Categories
JavaScript Answers

How to run Node npm install without SSL?

Spread the love

To run Node npm install without SSL, we set the registry to the non-secure registry URL.

To do this, we run

npm config set registry http://registry.npmjs.org/

to set the npm registry URL to http://registry.npmjs.org/.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *