verdaccio-tfs
v1.0.3
Published
Let your users authenticate into Verdaccio using Azure TFS NTLM
Readme
Verdaccio Auth via TFS
Let your users authenticate into Verdaccio via TFS
Install
As simple as running:
$ npm install -g verdaccio-tfsConfigure
auth:
tfs:
# REQUIRED, tfs url indcluding organization
url: ""
# REQUIRED, emails domain indcluding organization
domain: ""
# REQUIRED, root user
root_user: ""
# REQUIRED, root password hashed with bcrypt
root_password: ""Generate root password hash
const bcrypt = require("bcrypt");
bcrypt.hashSync("password", bcrypt.genSaltSync())can also navigate into package path and use
node genPasswordHash your_passwordLogging In
To log in using NPM, run:
npm login --registry https://your.registry.localAnd pass your tfs username - not email - and password
