Code4IT

The place for .NET enthusiasts, Azure lovers, and backend developers

How to connect and authenticate to NPM feeds on Azure DevOps

2020-04-07 4 min read Blog

Azure DevOps, among its capabilities, allows you to store NPM packages in their system. Here we’ll see how to connect to an NPM feed and how to solve the 401-unauthorized error.

Table of Contents

Just a second!
If you are here, it means that you are a software developer. So, you know that storage, networking, and domain management have a cost .

If you want to support this blog, please ensure that you have disabled the adblocker for this site. I configured Google AdSense to show as few ADS as possible - I don't want to bother you with lots of ads, but I still need to add some to pay for the resources for my site.

Thank you for your understanding.
- Davide

I use Azure DevOps to store some npm packages for my projects. As you may know, Azure DevOps has a section called Artifacts that allows you to store and distribute packages from NuGet, npm, Maven and so on.

Don’t you know what npm is? Check it out here!

You can have one or more Feeds in your organization: each feed contains some packages, and you can administer each feed with granularity, for example by selecting specific users to be allowed to access those packages.

How to connect to npm feed

In order to update and download packages to a feed, you must access that Artifact page, click on Connect to feed and navigate to the npm section.

Here you can get the two configurations that must be added to your project and to your Windows account: feed info and user credentials.

Where to store npm feed info

Feed info must be copied under the .npmrc file at the same level as your package.json file. The feed info is something like this:

registry=https://my-site/my-organization/_packaging/my-project/npm/registry/
always-auth=true

This tells your project that it must look for npm packages under that registry.

How to get npm user credentials

User credentials must be stored under your user account, inside of a .npmrc file, so under C:\users\{username}\.npmrc. That file must contain the credentials provided by Azure DevOps.

In the old version of Azure DevOps, to get the user credentials you can simply click on the Generate npm credentials button.

Connect to feed in old Azure DevOps layout

From the newer versions, you can follow two processes, depending on your OS.

If you are working on Windows, you can run vsts-npm-auth -config .npmrc to have the .npmrc file correctly created under your user account.

How to connect to feed on Windows

If you are working on a different OS you must generate a PAT - Personal Access Token - that must be encoded and replaced in a template provided by Azure DevOps. All the steps are described in the relative page.

How to connect to feed on other OS

So now you can install packages from this feed by running npm install package-name.

Solving error E401 - unable to authenticate

Sometimes, when running npm install, you can come across this error:

C:\Users\<my-user>\Desktop\{project-name}>npm install
npm ERR! code E401
npm ERR! Unable to authenticate, your authentication token seems to be invalid.
npm ERR! To correct this please trying logging in again with:
npm ERR!     npm login

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\<my-user>\AppData\Roaming\npm-cache\_logs\2020-01-30T10_16_27_550Z-debug.log

DO NOT TRY THE NPM LOGIN! It logs you in the npmjs.com website, not in your Azure DevOps organization. Or, better, it tries the login related to your default registry, which is usually https://registry.npmjs.org ; you can check it by running npm config get registry. So, by running npm login without knowing which registry you are using, you might log in to a different registry than expected.

Solution #1: manually refresh the token

Maybe your token is simply expired. You can simply navigate to Azure DevOps and generate new credentials to be stored in the .npmrc file at user level.

Solution #2: automatically refresh the token

Inside your project, you can open a terminal and run vsts-npm-auth -F -C .npmrc.

This script refreshes the npm token. Here I set two parameters: -F forces the refresh (if not set, the token is refreshed only if it is already expired), while -C fileName defines the configuration file.

As I said before, this command is available only on Windows.

Solution #3: check if the URLs contain non-escaped characters

This is a subtle problem that blocked my developments for almost 2 days, and it’s the reason why I decided to write this article.

My npm feed is available on Azure DevOps at this URL: https://my-site/my%20organization/my-project/_packaging?_a=feed&feed=my-feed

The .npmrc file for my project is

registry=https://my-site/my organization/_packaging/my-project/npm/registry/
always-auth=true

and the .npmrc file at user level is something like this

; begin auth token
//my-site/my organization/_packaging/my-project/npm/registry/:username=myusername
//my-site/my organization/_packaging/my-project/npm/registry/:_password=a-key==
//my-site/my organization/_packaging/my-project/npm/registry/:email=npm requires email to be set but doesn't use the value
//my-site/my organization/_packaging/my-project/npm/:username=myusername
//my-site/my organization/_packaging/my-project/npm/:_password=a-key==
//my-site/my organization/_packaging/my-project/npm/:email=npm requires email to be set but doesn't use the value
; end auth token

Everything looks fine, isn’t it?

Have you noticed something odd that may cause trouble?

The name of my organization is my organization, with a space. I found out that when trying to authenticate, the two URLs somehow don’t match because of that space. I noticed it by looking at my Artifact page URL, which contains %20.

Since the URLs don’t match, I’m receiving the 401 error. The solution (in my case) is simply to manually edit the .npmrc file at user level and replace every space with %20.

In the .npmrc file at project level you can leave the space in the URL.

This article first appeared on Code4IT

Conclusions

Here I explained how to connect to npm feeds from Azure DevOps and how to solve problems with authorization.

But, the future might bring something new: as you know, GitHub has announced the acquisition of npm in March 2020, and Microsoft acquired GitHub in 2018. So probably we’ll see a different way to integrate npm inside Azure DevOps. Who knows? 😊