node app.js不起作用的解決方法
In Express 3.0, you normally would use app.configure() (or app.use() ) to set up the required middleware you need. Those middleware you specified are bundled together with Express 3.0.
e.g.
var express = require('express');
var routes = require('./routes');
var user = require('./routes/user');
var http = require('http');
var path = require('path');
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.compress());
app.use(express.json());
app.use(express.urlencoded());
app.use(express.methodOverride());
In Express 4.0 however, all middleware have been removed so that they can be maintained and update independently from the core Express (except the static middleware), thus they need to be called separately (what you see in app.js).
The bin\
directory
serve as a location where you can define your various startup scripts, the www
is
an example on how it should looks like, ultimately you could have startup script like test
, stop
or restart
etc.
Having this structure allows you to have different configurations without touching the app.js.
所以這正確啟動的方式是 npm
start
相關文章
- 解決Mac檔案共享出錯、不起作用的方法Mac
- 在git中設定.gitignore忽略規則不起作用的解決方法Git
- DNNmodule.css檔案不起作用的解決DNNCSS
- nologging 不起作用!【解決】
- Unity3d 切片不起作用的解決辦法!Unity3D
- 解決 idea 的.gitignore 有時不起作用的問題IdeaGit
- 解決idea的.gitignore有時不起作用的問題IdeaGit
- node版本升級npm命令警告原因及解決方法NPM
- Jtti:oracle強制索引不起作用怎麼解決JttiOracle索引
- window環境下npm install node-sass報錯的解決方法NPM
- 不同Node版本導致的Date建構函式問題及解決方法函式
- TabError的解決方法Error
- ArtifactDescriptorException的解決方法Exception
- windows10系統下USB埠不起作用怎麼解決Windows
- [原創]解決了一個另類的輸入法不起作用的問題
- 如何在 pyqt 中解決國際化 tr() 函式不起作用的問題QT函式
- Node.js 中文亂碼解決Node.js
- Win10系統下數字鍵盤不起作用的3種解決方案Win10
- Git中.gitignore檔案不起作用的解決以及Git中的忽略規則介紹Git
- listener.log中報Warning: Subscription For Node Down Event Still Pending問題的解決方法
- Manjaro解決 Node.JS Error: ENOSPCJARNode.jsError
- dns劫持怎麼解決 dns劫持的解決方法DNS
- 由node的批量requests引起的”heap out of memory”解決方案
- 使用 dingo API 後,路由模型的隱式繫結不起作用了(解決辦法)GoAPI路由模型
- 遇到問題的解決方法
- 求事務的解決方法
- Laravel admin grid where 條件加 orWhere filter 不起作用怎麼解決LaravelFilter
- 前端Node的實用方法前端
- 檔案快速刪除工具, 解決你的node_modules
- Node出錯導致執行崩潰的解決方案
- Angular中innerHTML標籤的樣式不起作用詳解AngularHTML
- 基於nvm的Node、NPM的版本管理(NPM permission error的解決)NPMError
- 金沙不給提款的解決方法
- 跨域的九種解決方法跨域
- pycharm不支援django的解決方法PyCharmDjango
- 解決GitHub打不開的方法Github
- undefined reference to錯誤的解決方法Undefined
- vue命令無效的解決方法Vue