nodeJs學習過程當中遇到的小問題彙總

##1.node app.js 失效node

express 4.xxx版本之後 啓動項目使用 npm start 代替 node app.jsexpress

##2.supervisor app.js 失效npm

supervison bin/www 要保證bin下有www 若是沒有www文件就要建立 www文件app

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);
});
相關文章
相關標籤/搜索