Using the command prompt, I am trying to install angular CLI and it fails. I have npm version 5.5.1 and node version v8.9.1. I am trying to install angular cli using the com
Add a .npmrc
file in the root of the project. .npmrc
will look like below -
@xy:registry=https://xyz.jfrog.io/xyz/api/npm/npm-local/ @xy-app:registry=https://xyz.jfrog.io/xyz/api/npm/npm-local/
And Delete all the field eg - email , auth etc. Find out what is the registry url of your application and put it into the registry.
Then run command - npm install
And it will work.