Samson Ugwu
Samson Ugwu

Reputation: 104

Express server not installing on my machine

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

Answers (1)

Vahe Yavrumian
Vahe Yavrumian

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

Related Questions