티스토리 뷰

반응형

17년 1월 기준.

 

npm install express -g

 

usr/local/lib/node_modules

// express, npm 설치 경로

 

bash: express: command not found

// npm install express-generator -g 설치

 

mkdir test

express test

// test 생성

 

/usr/local/etc/test

npm install

// 해당 경로에서 인스톨

 

app.js

app.use(express.static(path.join(__dirname, 'app')));

// 사용할 폴더

 

npm start

// npm 시작

 

"scripts": {

"start": "node ./bin/www",

}

// package.json 에 start에 대한 scripts가 정의되어 있어야 한다.

 

./bin/www

// 서버 구성 및 시작 스크립트 파일

 

nohup npm start &

// nohup 시작

 

Can't set headers after they are sent

// callback 관련 error

 

반응형
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함