package.json 파일
package.json이란?
생성하기
npm init -y{
"name": "more_magazine_style",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanna244"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hanna244"
},
"homepage": "https://github.com/hanna244",
"private": true
}private
모듈 설치하기
설치 옵션 명령어
-D, --save-dev
참고
Last updated