새로운 Node.js 프로젝트를 시작할 때, package.json 파일을 생성하기 위한 명령어입니다.
> npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help init` for definitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.
Press ^C at any time to quit.
package name: (express1)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to C:\Users\HANSUNG\Documents\work\baseJS\node\express1\package.json:
{
"name": "express1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
package name: 프로젝트의 이름을 입력하는 부분입니다.
version: 프로젝트의 버전을 입력하는 부분입니다.
description: 프로젝트에 대한 간단한 설명을 입력하는 부분입니다.
entry point: 프로젝트의 진입점을 입력하는 부분입니다. 기본값으로 index.js가 설정되어 있습니다.
test command: 프로젝트의 테스트를 실행하기 위한 명령어를 입력하는 부분입니다.
git repository: 프로젝트의 Git 저장소 URL을 입력하는 부분입니다.
keywords: 프로젝트의 키워드를 입력하는 부분입니다.
author: 프로젝트의 작성자를 입력하는 부분입니다.
license: 프로젝트의 라이선스를 선택하는 부분입니다. 기본값으로 ISC가 설정되어 있습니다.