I am kind of new at this. Please help me. Thanks in advance.

PS C:\Project Code\ssp-ui-app> npm install

npm ERR! code EPROTO npm ERR! syscall write npm ERR! errno EPROTO npm ERR! request to failed, reason: write EPROTO 045D0000:error:0A000152:SSL routines:final_renegotiate:unsafe legacy renegotiation disabled:c:\ws\deps\openssl\openssl\ssl\statem\extensions.c:908: npm ERR!

2

1 Answer

Update your node.js installation.The following commands should do it (from here):

sudo npm cache clean -f sudo npm install -g n sudo n stable 

or reinstall node, then update npm.

First I removed node

apt-get purge node 

Then install node according to the distibution. Docs here .

Then

npm install npm@latest -g 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy