백지부터 시작하는 이세계 코딩 생활

[Node] package.json , npm 본문

Service || Server

[Node] package.json , npm

조아덕 2021. 7. 9. 18:10

*
npm install 축약어 : npm i 
--save-dev 축약어 : -D

*
모듈 전역설치 : 전역설치는 package.json에 기록되지 않는다. 
해당 모듈을 dependencies 에 등록 후 npx 명령어를 붙여 실행시키면 전역 설치한것과 같은 효과를 낸다.
=> npx module_name node_module
--global 축약어 : -g

예시 : 
npm i -D module_name
npm i -g module_name

 

'Service || Server' 카테고리의 다른 글

Infrastructure as a Service (IaaS)  (0) 2021.07.13
mysql connection pool 원리 및 필요성  (0) 2021.07.12
@types/ [ module-name ]  (0) 2021.06.02
Webhook  (0) 2021.05.31
DTO, DAO, Entity, Repository 에 대해서  (0) 2021.05.28
Comments