Reputation: 104
Am trying to install express library on my machine but keep getting this error message.
C:\Users\SAMMY WHITE SNR\Desktop\test>npm i [email protected]
npm ERR! Unexpected end of JSON input while parsing near '...rectories":{"lib":"./'
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\SAMMY WHITE SNR\AppData\Roaming\npm-cache\_logs\2020-05-04T06_40_13_375Z-debug.log
Upvotes: 0
Views: 41
Reputation: 558
This worked for me, try
npm cache clean --force
npm i [email protected]
also, I recommend installing the current stable version with
npm i express
Upvotes: 3