Express 라이브러리 설치 VScode 터미널 열기 npm init 어떤 라이브러리를 설치했는지 기록하기 위해 package.json에 기록하는데 자동으로 생성시켜줌 entry point만 내가 원하는 파일명으로 작성 { "name": "nodejs_mongodb", "version": "1.0.0", "description": "", "main": "server.js", "scripts": { "test": "echo \\"Error: no test specified\\" && exit 1" }, "author": "", "license": "ISC", } npm install express 로 설치 dependencies에 express가 추가됨 { "name": "nodejs_mongodb", ..