express-generator2 [Node.js] 프로젝트의 Directory structure express-generator로 생성한 프로젝트의 Directory structure - package.json application dependency 와 다른 정보 정의 - bin/www application entry point application의 진짜 entry point인 app.js 를 require() 특정 port(default 3000)로 설정된 HTTP서버 설정 서버 연결, 수신 /** * Module dependencies. */ var app = require('../app'); var debug = require('debug')('btc-wallet:server'); var http = require('http'); /** * Get port from environment a.. 2022. 11. 7. [Node.js] express-generator로 프로젝트 생성하기 1. express-generator 설치 express-generator : application generator tool application skeleton을 빠르게 생성. 생성된 app의 디렉토리 구조가 잡혀있어 편하게 이용 가능 npm install express-generator -g 2. 프로젝트 생성 express --view= btc-wallet 이름의 프로젝트 생성 --view=pug : pug 템플릿엔진 사용. express btc-wallet --view=pug 3. 생성한 프로젝트 폴더로 이동 & 라이브러리 설치 package.json 의 dependecies 객체 안에 있는 npm 설치 cd btc-wallet npm install 4. 서버 접속 DEBUG=btc-wallet.. 2022. 11. 4. 이전 1 다음