본문 바로가기

프로그래밍/Node.js

node.js ./bin/www 에서 app.js로 바꾸는 방법

package.json파일 내의 npm 시작 스크립트를 보면 ./www.bin 으로 되어있다.

이것을 app.js 파일로 시작하게 바꾸려면 app.js 파일의 끝에 있는 module.exports = app; 을 삭제한 다음 다음 코드를 붙여넣는다.

app.set('port', process.env.PORT || 3000);


var server = app.listen(app.get('port'), function() {
  debug('Express server listening on port ' + server.address().port);
});


debug 모듈은 app.js 파일의 맨 위에서 로드되게 한다.

var debug = require('debug')('app4');


package.json 파일의 "start":"node ./bin/www"를 "start":"node app.js"로 변경한다.

'프로그래밍 > Node.js' 카테고리의 다른 글

npm install --save 옵션을 쓰는 이유는?  (0) 2022.02.09
node.js 프로젝트 시작  (0) 2021.12.06
mysql 과 node js express 연동법  (0) 2019.02.10
nodemon 설치 후 설정  (0) 2019.02.10
Node.js Express  (0) 2019.02.10