I've created an NPM Package on TFS (because my organisation uses TFS instead of normal git/gitbucket/gitlab), that I want to install to other projects.
On Github all I needed to do this was:
$ npm install git.com/username/privateRepoName
but when I try:
$ npm install tfs.organisationname.net/reponame
I get the following error:
npm ERR! code E401
npm ERR! Unable to authenticate, your authentication token seems to be invalid.
I've tried multiple methods for hours now on adding my credentials (yes, my windows credentials are the same as my TFS credentials) but i'm not seeming to win nor find the answer anywhere as every example is using git credentials and not TFS.
Does anyone know how I can do this?