Node Package Module
npm init
npm install
0.x.0 : 마이너 릴리스
x.0.0 : 메이저 릴리스
^: 메이저 릴리스 미만까지 허용 ex. ^0.12.1 : 1.0 미만까지 허용
~: 마이너 릴리스 미만까지 허용 ex. ~0.12.0 : 0.12.1부터 0.13.0 미만
"scripts": {
"test": "node test.js"
}
npm install -g yarn //yarn 설치
yarn add [모듈명] // 모듈을 설치할 수 있다