269
275

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 5 years have passed since last update.

よく使うnpmコマンド

Last updated at Posted at 2015-09-01

セットアップ

package.jsonを生成

npm init

パッケージをまとめてインストール/アップデート

npm update

パッケージをインストール

npm install hoge

パッケージをアンインストール

npm remove hoge

確認

インストール済みパッケージを一覧表示(依存パッケージは非表示)

npm ls --depth=0

インストール済みパッケージを一覧表示(依存パッケージも含めて表示)

npm ls

npmのバージョンを表示

npm -v

整理する

最新になっていないパッケージを一覧表示

npm outdated

未使用パッケージを削除

npm prune

操作する

ローカルのバイナリを実行

`npm bin`/hoge

テストを実行

※package.jsonのscriptsにテストコマンドを記述しておく

npm test

探す

パッケージを検索

npm search hoge

パッケージの詳細を表示

npm show hoge

グローバル環境

npm自体のアップデート

npm update -g npm

-gオプションであれこれ

npm install -g hoge
npm remove -g hoge
npm ls -g
npm outdated -g
269
275
1

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
269
275

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?