I need to pass the credentials for npm login in a script. Is there a way to give the credentials similar to the git credentials?
git clone https://username:[email protected]
I need to pass the credentials for npm login in a script. Is there a way to give the credentials similar to the git credentials?
git clone https://username:[email protected]
On
https://stackoverflow.com/a/54540693/6191913 This anwser is working.
To be more helpful, when you type npm login and give username and password interactively, npm will generate an auth_token automatically for you and insert it into the .npmrc.
The auth_token is constant given the username/password is the same.
For cli usage, you can just echo //registry.npmjs.org/:_authToken=npm_MY_TOKEN > ~/.npmrc instead of npm login ...
On
Take a look at the .npmrc file you can use this file to set npm configuration variables, such as credentials, registry location, etc... This file is located in your HOME directory. Here is an example .npmrc file to use for reference:
~/.npmrc
registry=https://registry.npmjs.com/
_auth="<token>"
email=<email>
always-auth=true
substitute your email and _auth token appropriately for your credentials. Your script will use these global configurations set within your .npmrc file.
Hopefully that helps!
I found an npm package for this:
Install npm-cli-login and in the terminal/scripts use it as below:
I found two other ways to pass the credentials without the need to use an external command, but be aware that these commands might not work in environments such as Jenkins.
Commands: