LoginSignup
0
0

More than 3 years have passed since last update.

npmって?

Last updated at Posted at 2020-03-28

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

インスロールしたパッケージをみる(グローバル)

npm ls -g --depth=0

インスロールしたパッケージをみる(ローカル)

npm ls --depth=0

0
0
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
0
0