LoginSignup
5
1

More than 5 years have passed since last update.

npm コマンドの省略

Last updated at Posted at 2018-02-14

覚えたこと

  • npm コマンドの省略
    • npm install
    • --save-dev

npm installは省略できる。

省略前
npm install
省略後
npm i

--save-devは省略できる。

省略前
npm i --save-dev gulp
省略後
npm i -D gulp

間違い、その他オススメなことがありましたら、是非ご指摘ください!

5
1
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
5
1