티스토리 뷰
반응형
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
반응형
'Study' 카테고리의 다른 글
When network connection values do not return(네트워크 연결값이 돌아오지 않을 때) (0) | 2024.02.18 |
---|---|
JMeter(제이미터) 관련 (0) | 2024.02.18 |
node js(노드제이에스) install(설치) error(에러) (0) | 2024.02.18 |
node js(노드제이에스) install(설치) 관련 (0) | 2024.02.18 |
Tomcat(톰캣) install(설치) (0) | 2024.02.18 |
댓글