How to fix Cannot read properties of null (reading pickAlgorithm) in npm
5 NOV 2022
JAVASCRIPT
When installing packages using npm install
, you may come across the following error:
npm ERR! Cannot read properties of null (reading 'pickAlgorithm')
To fix this, simply run the following command, before running npm install
again:
npm cache clear --force
Hopefully, you should find that this fixes the issue.