0
0

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.

npmコマンドよく使う集

Posted at

はじめに

npmツールでパッケージを管理していく。

モジュールが沢山集まったものがパッケージのイメージ。

package.jsonファイルはパッケージ管理ファイル。

パッケージのバージョンや開発環境(devDependencies)で使用するパッケージなのか、とかnpmのスクリプトを書くことができる。

npmコマンド

package.jsonを生成。-yを付けることで対話形式を蹴って原型を自動で作成してくれる。

npm init -y

パッケージを検索。githubとかに公開されているパッケージまで飛んでくれる。

npm docs <パッケージ名>

パッケージインストール、アンインストール。dependenciesに追加、削除。

npm i <パッケージ名>
npm rm <パッケージ名>

パッケージインストール、アンインストール。Devdependenciesに追加、削除。

npm i -D <パッケージ名>
npm rm -D <パッケージ名>

パッケージインストール、アンインストール。グローバルに追加、削除。

npm i -g <パッケージ名>
npm rm -g <パッケージ名>

グローバルパッケージの保存先。

npm root -g

パッケージインストールリスト。

npm ls

パッケージ毎の歴代バージョンの確認。

npm view versions <パッケージ名>
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?