开发者问题收集

Node.js 错误,关于它的一切

2016-02-24
752

每次我的团队尝试在 node.js 中实现某些东西时,就会发生这种情况,对于我们应该如何修复它,有什么想法吗? - 请注意,我们是 node 新手

$ npm install express --save

 SyntaxError: Unexpected identifier
    at Object.exports.createScript (vm.js:24:10)
    at REPLServer.defaultEval (repl.js:235:25)
    at bound (domain.js:287:14)
    at REPLServer.runBound [as eval] (domain.js:300:12)
    at REPLServer.<anonymous> (repl.js:427:12)
    at emitOne (events.js:95:20)
    at REPLServer.emit (events.js:182:7)
    at REPLServer.Interface._onLine (readline.js:211:10)
    at REPLServer.Interface._line (readline.js:550:8)
    at REPLServer.Interface._ttyWrite (readline.js:827:14)
2个回答

您不应该在 Node REPL 中输入 npm 命令。那是用来输入 JavaScript 的。

直接在 shell 中输入 npm 命令。

哦,您也不应该输入 $ 。那只是代表常见的 shell 提示符。

Matti Virkkunen
2016-02-24

只需在命令提示符 (cmd) 中输入即可。

npm install express --save
Md Rahman
2016-09-01