npm 모듈들을 설치하다보면 블로그 마다 설치하는 옵션이 모두 다릅니다!! 그때 마다 너무 궁금했어서 이번에 쭉 정리를 해보았습니다 npm install 옵션 https://docs.npmjs.com/cli/v7/commands/npm-install 1. npm install nodemon == npm install -P nodemon 가장 기본으로 위와 같이 하면package.json의 dependencies 아래에 기록 된다 -P가 default로 붙는다. 이는 —save-prod와 같다 2. npm install -D nodemon == npm install nodemon —save-dev -D 또는 —save-dev 옵션을 주면 package.json의 dev-dependencies에 기록 된다...
npm install 옵션(dependencies와 dev-dependencies의 차이)
npm 모듈들을 설치하다보면 블로그 마다 설치하는 옵션이 모두 다릅니다!! 그때 마다 너무 궁금했어서 이번에 쭉 정리를 해보았습니다 npm install 옵션 https://docs.npmjs.com/cli/v7/commands/npm-install 1. npm install nodemon == npm install -P nodemon 가장 기본으로 위와 같이 하면package.json의 dependencies 아래에 기록 된다 -P가 default로 붙는다. 이는 —save-prod와 같다 2. npm install -D nodemon == npm install nodemon —save-dev -D 또는 —save-dev 옵션을 주면 package.json의 dev-dependencies에 기록 된다...
2021.07.03