如何解决npm start上的这一节点js错误?

时间:2020-04-07 07:03:47

标签: javascript node.js npm nodes node-modules

执行npm start后出现以下错误 使用Mac Book Pro

错误摘要

dbrax:机器人苹果$ npm启动

> bot@1.0.0 start /Users/apple/Desktop/saas/bot
> nodemon index.js

/Users/apple/Desktop/saas/bot/node_modules/chokidar/index.js:151
  async remove(item) {
        ^^^^^^
SyntaxError: Unexpected identifier
    at Object.exports.runInThisContext (vm.js:76:16)
    at Module._compile (module.js:542:28)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/Users/apple/Desktop/saas/bot/node_modules/nodemon/lib/monitor/watch.js:6:16)
    at Module._compile (module.js:570:32)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! bot@1.0.0 start: `nodemon index.js`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the bot@1.0.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/apple/.npm/_logs/2020-04-07T06_46_27_297Z-debug.log

以下是我的package.json

  {
      "name": "bot",
      "version": "1.0.0",
      "description": "",
      "main": "index.js",
      "scripts": {
        "start": "nodemon index.js"
      },
      "author": "",
      "license": "ISC",
      "dependencies": {
        "express": "^4.17.1",
        "nodemon": "^2.0.2"
      }
    }

上面的json包有一个脚本启动,该脚本执行nodemon index.js,但是每次执行npm start时,都会得到上述错误搜索信息,以寻求解决方法的线索,但是在stackover流或其他来源上没有结果。

1 个答案:

答案 0 :(得分:1)

我想您在function之前忘记了关键字remove(item)

const async function remove(item) {
  // Your function code here
}

或使用箭头功能:

cons remove = async (item) => {
  // Your function code here
}