NodeJS 패키지 관리

이승훈·2026년 3월 4일

NodeJS

프로젝트 작성

cd app
npm init

패키지 목록 작성

{
  "type": "module",
  "main": "index.js",
  "scripts": {
    "test": "nodemon --watch ./ --env-file=.env ./index.js",
    "start": "pm2 start index.js --name carpool --node-args='--env-file=.env'"
  },
  "dependencies": {
    "npm": "latest",
    "pm2": "latest",
    "nodemon": "latest"
  }
}

패키지 설치

npm install
profile
안녕하세요!

0개의 댓글