How to solve npm ERR! cb() never called

Midi
Apr 14, 2022

--

  1. Delete your ‘package-lock.json’ file.
  2. Run the following command from the root folder of the project: npm cache verify.
  3. Run npm install.

If you are still facing issues, try the above steps again except for step 2 run the following command instead: npm cache clean --force.

--

--