Skip to content

Instantly share code, notes, and snippets.

@comchangs
Forked from bynaki/1515eed1dc0-f75e2bea.md
Created May 11, 2018 06:29
Show Gist options
  • Save comchangs/2713c11e37df7f6619bab66b59fc7238 to your computer and use it in GitHub Desktop.
Save comchangs/2713c11e37df7f6619bab66b59fc7238 to your computer and use it in GitHub Desktop.
npm - --save 옵션 - --save-dev 옵션

npm

--save 옵션

$ npm install github --save

만약 현재 경로에 package.json 이 존재하면 아래와 같이 dependencies 항목에 자동으로 포함된다.

{
  "name": "node-github-test",
  "version": "0.0.0",
  "description": "node-github test",
  "dependencies": {
    "github": "^0.2.4"
  }
}

--save-dev 옵션

$ npm install mocha --save-dev

만약 현재 경로에 package.json 이 존재하면 아래와 같이 devDependencies 항목에 자동으로 포함된다.

{
  "name": "fourdollar.js",
  "version": "0.1.3",
  "dependencies": {},
  "devDependencies": {
    "mocha": "^2.3.4"
  }
}
{"noteId":"1515eed1dc0-f75e2bea","main":"1515eed1dc0-f75e2bea.md","title":"npm - --save 옵션 - --save-dev 옵션"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment