NodeJS 프로젝트 생성

이승훈·2026년 3월 4일

NodeJS

디렉토리 생성

mkdir app

프로젝트 생성

cd app
npm init

프로젝트 설정

"type": "module",
"scripts": {
  "test": "nodemon --watch ./ ./index.js",
  "start": "pm2 start index.js --name 앱이름"
},
profile
안녕하세요!

0개의 댓글