Premium support for our pure JavaScript UI components


Post by saad.saeed »

I am having issue while installing the node modules using npm. Logs say that Verification failed while extracting @bryntum/grid@4.1.0

I have already logged in and authorized in NPM.


Post by sergey.maltsev »

Hi!

If you have problems with installing or reinstalling packages you could try these commands for full npm cache
cleanup, removing package folders and reinstalling all dependencies:

For MacOS/Linux:

$ npm cache clean --force 
$ rm -rf node_modules
$ rm package-lock.json
$ npm install

For Windows:

$ npm cache clean --force 
$ rmdir node_modules /s /q
$ del package-lock.json
$ npm install

Post by saad.saeed »

It worked. Thanks @sergey.maltsev


Post Reply