본문 바로가기

프로그래밍/Node.js

node.js 프로젝트 시작

1. 프로젝트 폴더로 이동한다. 밑 명령어를 입력한다. 그러면 package.json이 생성된다.

npm init -y
{
  "name": "node_practice",//이름
  "version": "1.0.0",//버전
  "description": "",
  "main": "index.js",//직접적으로 npm의 생태계에 업로드할 수 있는 패키지를 만들 때 필요한 것, 웹은 필요없음
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },	//프로젝트 내부에서 사용할 수 있는 스크립트 명령어
  "keywords": [], //키워드
  "author": "",//소유주
  "license": "ISC"//라이센스
}

2. npm 패키지 설치, 그러면 node_modules 폴더가 생성된다. package.json 안에도 설치한 패키지가 남게 된다.

npm install parcel-bundler -D
{
  "name": "node_practice",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "parcel-bundler": "^1.12.5"
  }
}

3. lodash 패키지를 설치한다.

npm install lodash

4. 만약 node_modules 의 폴더를 삭제한다면 package.json 안에 남기 때문에 npm install 해도 패키지를 설치 할 수 있다.