Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8691

npmって?

$
0
0

npmって?

node package manager

Node.jsで使うパッケージを管理するために使う
Nodeをインストールすると一緒にインストールされる

npmのインストール

僕はMacOSにnodebrewでインストールした

nodebrewはNode.jsのバージョン管理システム
Homebrewでインストールする

$ brew install nodebrew
$ echo "export PATH=$HOME/.nodebrew/current/bin:$PATH" >> ~/.bash_profile
$ source ~/.bash_profile
$ which nodebrew

これでnodebrewのパスが表示されればOK

この後,nodeをインストールして,その後npmをインストールする

npmコマンド

インストールディレクトリを確認

npm root


Viewing all articles
Browse latest Browse all 8691

Trending Articles