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の-saveオプションを惰性でつけてた話

Posted at

--svaeオプションはいらない

更新古い記事とかを鵜呑みにして以下のコマンドを実行とかをそのままやると無駄に--saveつけてることがありますよね。いままでなーーんにも考えてこなかったし、しかもさして実害がないから放置してたけどなんやろと思って調べたので備忘録。

--saveオプションとは

npm initをすると以下のようなpackage.jsonが作成されますね。

package.json
{
  "name": "Example",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
  }
}

この中の"dependencies"にこのパッケージを使うのに必要なパッケージが記載されておりpackage.jsonがあるディレクトリでnpm installをすると必要パッケージがinstallされます。
昔は

npm install packageName

としただけではこの"dependencies"に記述を追加してくれなかったようで

npm install --save packageName

としていましたがnpm5.0.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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?