Search code examples
javascriptnode.jsnpmnodesnode-modules

how does one solve this node js error on npm start?


I am getting the following error once I execute npm start Using mac book pro

Snippet of the error

dbrax:bot apple$ npm start

> [email protected] 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! [email protected] start: `nodemon index.js`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] 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

The following is my 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"
      }
    }

The package json above has a script start which executes nodemon index.js but everytime i execute npm start i get the above error search for clues on how to solve it but no results on stackover flow or other sources.


Solution

  • I suppose you forgot the keyword function before remove(item).

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

    or using arrow function:

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