Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm install error - cb() never called

Tags:

npm

I try to install node_module in my angular project what I downloaded, but I get this error:

npm ERR! registry error parsing json

Then i reinstall npm using npm intall npm -g and after when i try use npm install I get this error:

(node:11252) UnhandledPromiseRejectionWarning: Unhandled promise
rejection (rejection id: 1): Error: ENOENT: no such file or directory, stat
'C:\Users\User\AppData\Roaming\npm-cache\_cacache\tmp\git-clone-ec5da46c\angular\cdk.es5.js'

debug.log:

0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli   'C:\\Users\\User\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli   'install' ]
2 info using [email protected]
3 info using [email protected]
4 verbose npm-session ff5ce249dfe37f0e
5 silly install runPreinstallTopLevelLifecycles
6 silly preinstall [email protected]
7 info lifecycle [email protected]~preinstall: [email protected]
8 silly install loadCurrentTree
9 silly install readLocalPackageData
10 silly install loadIdealTree
11 silly install cloneCurrentTreeToIdealTree
12 silly install loadShrinkwrap
13 info lifecycle @angular/[email protected]~prepack: @angular/[email protected]
14 error cb() never called!
15 error This is an error with npm itself. Please report this error at:
16 error <https://github.com/npm/npm/issues>

I already tried npm cache clean --force but i get same error.

node -v v6.10.2
npm -v 5.4.2
like image 600
Vertigo Avatar asked Oct 09 '17 12:10

Vertigo


People also ask

What is npm clean install?

The npm clean-install command (or npm ci for short) is an in-place replacement for npm install with two major differences: It does a clean install: if the node_modules folder exists, npm deletes it and installs a fresh one. It checks for consistency: if package-lock.

Does npm install Dev dependencies?

By default, npm install will install all modules listed as dependencies in package. json . With the --production flag (or when the NODE_ENV environment variable is set to production ), npm will not install modules listed in devDependencies .

How do I clear Nodejs cache?

Run: “npm cache clean –force” are both not working and you still can't clear the cache, you can force clear the cache by running: npm cache clean --force or npm cache clean -f . This will force delete the npm cache on your computer.


2 Answers

I had the same issue. I resolved it

by excluding package-lock.json file

npm i --no-package-lock

OR by manually deleting package-lock.json

like image 63
Hemadri Dasari Avatar answered Sep 30 '22 15:09

Hemadri Dasari


Run npm cache clean --force and perform an install.

like image 25
StangSpree Avatar answered Sep 30 '22 13:09

StangSpree