在 npm start 命令上解析 body-parser 的云代码错误
Parse cloud code error for body-parser on npm start command
我已经创建了用于解析云代码的项目,现在我正在尝试使用 node.js
启动它
当我 运行 start npm
命令时出现以下错误。
:\Project>npm start
> parse-server-example@1.4.0 start C:\Project
> node index.js
1
C:\Project\node_modules\express\lib\express.js:89
throw new Error('Most middleware (like ' + name + ') is no longer bundled
with Express and must be installed separately. Please see https://github.com/sen
chalabs/connect#middleware.');
^
Error: Most middleware (like bodyParser) is no longer bundled with Express and m
ust be installed separately. Please see https://github.com/senchalabs/connect#mi
ddleware.
at Function.Object.defineProperty.get (C:\Project\node_modules\express\lib\
express.js:89:13)
at Object.<anonymous> (C:\Project\cloud\plivo_receiver.js:6:16)
at Module._compile (module.js:541:32)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
at tryModuleLoad (module.js:417:12)
at Function.Module._load (module.js:409:3)
at Module.require (module.js:468:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (C:\Project\cloud\main.js:6:1)
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\
node_modules\npm\bin\npm-cli.js" "start"
npm ERR! node v6.3.0
npm ERR! npm v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! parse-server-example@1.4.0 start: `node index.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the parse-server-example@1.4.0 start script 'node index.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the parse-server-example
package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node index.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs parse-server-example
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls parse-server-example
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! C:\Project\npm-debug.log
根据错误的说明,我检查了 https://github.com/sen
chalabs/connect#middleware 但无法理解解决方案。
以下行代码产生错误。
app.use(express.bodyParser());
app.use(express.methodOverride());
请告诉我如何解决这个问题。
问题已解决。
我用过如下其他方式。
var bodyParser = require('body-parser')
var methodOverride = require('method-override')
var app = express();
app.use(bodyParser);
app.use(methodOverride);
我在此处 Body-parser Installation 找到了有关 bodyParser 的文章,并且对 methodOverride 也做了类似的文章。
可能会对某人有所帮助并节省 his/her 时间。
谢谢
我已经创建了用于解析云代码的项目,现在我正在尝试使用 node.js
启动它当我 运行 start npm
命令时出现以下错误。
:\Project>npm start
> parse-server-example@1.4.0 start C:\Project
> node index.js
1
C:\Project\node_modules\express\lib\express.js:89
throw new Error('Most middleware (like ' + name + ') is no longer bundled
with Express and must be installed separately. Please see https://github.com/sen
chalabs/connect#middleware.');
^
Error: Most middleware (like bodyParser) is no longer bundled with Express and m
ust be installed separately. Please see https://github.com/senchalabs/connect#mi
ddleware.
at Function.Object.defineProperty.get (C:\Project\node_modules\express\lib\
express.js:89:13)
at Object.<anonymous> (C:\Project\cloud\plivo_receiver.js:6:16)
at Module._compile (module.js:541:32)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
at tryModuleLoad (module.js:417:12)
at Function.Module._load (module.js:409:3)
at Module.require (module.js:468:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (C:\Project\cloud\main.js:6:1)
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\
node_modules\npm\bin\npm-cli.js" "start"
npm ERR! node v6.3.0
npm ERR! npm v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! parse-server-example@1.4.0 start: `node index.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the parse-server-example@1.4.0 start script 'node index.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the parse-server-example
package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node index.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs parse-server-example
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls parse-server-example
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! C:\Project\npm-debug.log
根据错误的说明,我检查了 https://github.com/sen chalabs/connect#middleware 但无法理解解决方案。
以下行代码产生错误。
app.use(express.bodyParser());
app.use(express.methodOverride());
请告诉我如何解决这个问题。
问题已解决。
我用过如下其他方式。
var bodyParser = require('body-parser')
var methodOverride = require('method-override')
var app = express();
app.use(bodyParser);
app.use(methodOverride);
我在此处 Body-parser Installation 找到了有关 bodyParser 的文章,并且对 methodOverride 也做了类似的文章。
可能会对某人有所帮助并节省 his/her 时间。
谢谢