npm
Documentation
CLI
Examples:
# help
npm help
npm help <command>
# バージョン表示
npm -v
npm-install
https://docs.npmjs.com/cli-commands/install.html
パッケージをインストールする。
エイリアス: i, add
# 書式
npm install パッケージ [OPTIONS]
npm install [<@scope>/]<name>
npm install [<@scope>/]<name>@<version>
# package.json に従ってインストール
npm install
Option | 説明 |
---|---|
-g | –global |
–no-save | (package.jsonの)dependencies に追加しない |
npm-ls
https://docs.npmjs.com/cli-commands/ls.html
インストールされたパッケージを一覧表示。
エイリアス: list, la, ll
npm ls [[<@scope>/]<pkg> ...]
npm-uninstall
https://docs.npmjs.com/cli-commands/uninstall.html
インストールされたパッケージを削除する。
エイリアス: remove, rm, un, unlink
npm uninstall パッケージ [OPTIONS]
最終更新 2020-06-03: [program] Omit "lang/" subsection (a39ae753e)