3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Macへのnpm、npxのインストール

Posted at

AWS AmplifyでWebアプリケーションを構築するチュートリアルを進めようとしたところ、npxが必要になったのでインストール方法をメモしておきます。

#手順
##パッケージマネージャの更新
Macのパッケージマネージャを更新します。

$ brew update

##nodebrewをインストール
nodeのバージョンを管理するnodebrewをインストールします。

$ brew install nodebrew

##node.jsのインストール
node.jsインストール用のフォルダを用意した後、インストールを行ってから使用するバージョンを指定します。

$ mkdir -p ~/.nodebrew/src
$ nodebrew install-binary latest
$ nodebrew list
$ nodebrew use v[表示されたバージョン]

##パスを通す
.bash_profileに以下を追記します。
npmは~/.nodebrew/src/の下に存在します。

.bash_profile
export PATH=$PATH:[npmへのパス]

#まとめ
AWSのチュートリアルを実施したいだけだったのですが、node.js(npx)のインストールだけで1時間かかってしまいました。
この後、チュートリアルに取り組みたいと思います。


<<参考>>

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?