LoginSignup
0
0

More than 5 years have passed since last update.

npm でコト始め

Posted at
今のバージョン
$ node -v; npm -v
v10.15.3
6.4.1
初手
$ npm init -y; touch .npmrc
package.json
"engines": {
  "node": "10.15.3",
  "npm": "6.4.1"
},
.npmrc
engine-strict=true
heading = "🤪"
progress = false
save = true
save-exact = true
パッケージの確認
$ npm v <package>
パッケージのインストール
$ npm i <package>
$ npm i -D <package>
設定(.npmrc)確認
$ npm c ls
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