Skip to content

Latest commit

 

History

History
206 lines (117 loc) · 10.2 KB

get-started-npm.md

File metadata and controls

206 lines (117 loc) · 10.2 KB
title description ms.technology ms.topic ms.assetid ms.date monikerRange
Use npm to store JavaScript packages in Azure DevOps Services
Use npm to store your JavaScript packages in Azure DevOps Services or Team Foundation Server
devops-artifacts
quickstart
5BFBA0C3-85ED-40C9-AC5F-F686923160D6
11/14/2019
>= tfs-2017

Use npm to store JavaScript packages in Azure DevOps Services or TFS

Azure DevOps Services | TFS 2018 | TFS 2017

This quickstart guides you through using npm to store JavaScript packages in Azure DevOps Services or Team Foundation Server (TFS). It covers installation, license assigning, and setup.

::: moniker range=">=tfs-2017 <= tfs-2018"

License the Azure Artifacts extension

Install Azure Artifacts in TFS

Azure Artifacts is installed by default for TFS 2017 customers. To use Azure Artifacts, you must upgrade to TFS 2017.

If the Azure Artifacts extension has been removed, you can install it from the Marketplace page for Azure Artifacts.

::: moniker-end

::: moniker range="azure-devops-2019"

Assign Azure Artifacts in Azure DevOps Services

Each organization gets five free licenses. If you need more than five licenses, go to the Marketplace page for Azure Artifacts and select Get. Select Buy and purchase the additional licenses that you need.

Assign your licenses by following these instructions:

  1. Go to your organization and select Admin settings on the lower left of the UX.
  2. Select Users.
  3. Select the user or users you want to assign the Azure Artifacts extension to, and select Manage extensions.
  4. If you're selecting multiple users, select Assign extensions and choose the Azure Artifacts extension. If you're selecting only one user, select the Azure Artifacts box under Extensions and select Save changes.

If you have a Visual Studio Enterprise license, you already have access to Azure Artifacts and don't need to be assigned a license. Just ensure that you've been assigned the "Visual Studio Enterprise" access level.

  1. Go to your account, go to the Users page, and select Package Management.
  2. Select Assign, enter the users you want to assign licenses to, and then select Ok.

If you have a Visual Studio Enterprise license, you already have access to Package Management and don't need to be assigned a license. Just ensure that you've been assigned the "Visual Studio Enterprise" access level.

::: moniker-end

::: moniker range=">=tfs-2017 <= tfs-2018"

Assign licenses in TFS

Each organization gets five free licenses. If you need more than five licenses, go to the Marketplace page for Azure Artifacts and select Get. Select Buy and purchase the additional licenses that you need.

If you aren't sure, you can select Start 30 day free trial. Every user in your organization is then granted access to Azure Artifacts for 30 days. After the 30-day trial period, your organization reverts back to five entitled users, and you must assign licenses to individual users. If you need additional licenses at this point, you can purchase them from this same dialog box in the Marketplace.

If you selected Start 30 day free trial and are still in the trial period, every user is granted access. Licenses don't need to be assigned until the trial period ends.

  1. From any collection in TFS, hover over the settings menu and select the Users page. Then select Package Management.

    Users page in TFS

  2. Select Assign, enter the users you want to assign licenses, and then select Ok.

::: moniker-end

Create a feed

On your first visit to Azure Artifacts, you're welcomed with an image that prompts you to create a new feed. Click the + New feed button.

In the dialog box:

  • Give the feed a name.
  • Visibility: Choose who can read and contribute (or update) packages in your feed. An organization-visible feed is created with permissions that allow all users in the organization to see and use your feed (recommended). A private feed is created with permissions such that only you have access.
  • Upstream sources: Selecting Use packages from public sources through this feed will add both the public npm (registry.npmjs.org) and NuGet (packages.nuget.org) packages as upstreams to your feed. When upstreams are enabled, your client (that is, npm and NuGet) can fetch packages from the public registry through your private feed, and your private feed will cache those packages for you. If you select Use packages published to this feed, your feed is created without connectivity to public registries. You can connect them later if you want.
  • When you're done, select Create.

::: moniker range=">= azure-devops-2019"

[!div class="mx-imgBorder"] New feed dialog box

::: moniker-end

::: moniker range="<= tfs-2018"

New feed dialog box

::: moniker-end

You can change these settings later by editing the feed.

[!INCLUDE edit-feed]

Set up your .npmrc files

All Azure Artifacts feeds require authentication. You'll need to store credentials for the feed before you can install or publish packages. npm uses .npmrc configuration files to store feed URLs and credentials.

Find your .npmrc files

We recommend that you use two .npmrc files:

  1. One .npmrc should live at the root of your git repo adjacent to your project's package.json.

    1. From your Artifacts page, click Connect to Feed

      ::: moniker range=">= azure-devops-2019"

      [!div class="mx-imgBorder"] Connect to feed button in Azure Artifacts

      ::: moniker-end

      ::: moniker range="<= tfs-2018"

      Connect to feed button in Azure Artifacts

      ::: moniker-end

      ::: moniker range=">= tfs-2017 < azure-devops"

      Connect to feed button in Azure Artifacts

      ::: moniker-end

    2. Select npm.

    3. Select Get the tools in the top right corner

    4. Follow steps 1 and 2 to download Node.js, npm and the artifacts credential provider.

    5. Select Windows if you are on a Windows Machine, or Other if you are on MacOs or Linux.

    6. Follow the instructions in the Project setup, Restore packages, and Publish packages sections to publish.npm-azure

      ::: moniker range=">= azure-devops-2019"

      [!div class="mx-imgBorder"] Connect to feed from Azure Artifacts

      ::: moniker-end

      ::: moniker range="<= tfs-2018"

      Connect to feed from Azure Artifacts

      ::: moniker-end

      ::: moniker range=">= tfs-2017 < azure-devops"

      Connect to feed from Azure Artifacts

      ::: moniker-end

  2. On your development machine, you will also have a .npmrc in $home for Linux or Mac systems or $env.HOME for win systems. This .npmrc should contain credentials for all of the registries that you need to connect to. The NPM client will look at your project's .npmrc, discover the registry, and fetch matching credentials from $home/.npmrc or $env.HOME/.npmrc. Credential acquisition will be discussed in the next section.

This enables you to share the project's .npmrc file with the whole team while keeping your credentials secure.

Set up authentication on your development machine

At this point, you should have a project-specific .npmrc file that contains only your feed's registry information that you discovered from the Connect to feed dialog box. There should be no credentials in this file. The file is usually adjacent to your project's package.json file.

Important

There can be only a single "registry=" line in your .npmrc file. Multiple registries are possible with scopes and the new upstream feature (discussed here).

Windows

If you're developing on Windows, we recommend that you use vsts-npm-auth to fetch credentials and inject them into your ~/.npmrc file on a periodic basis. The easiest way to set this up is to install vsts-npm-auth globally (that is, npm install -g vsts-npm-auth) and then add a run script in your project's package.json file.

"scripts": {
    "refreshVSToken": "vsts-npm-auth -config .npmrc"
}

Linux or Mac

If you're developing on Linux or Mac, vsts-npm-auth is not supported. We recommend generating a token in the following manner for your $HOME/.npmrc file.

[!INCLUDE ]

Build your project

At this point, your project should have a package.json file and an .npmrc file adjacent to each other. Run npm install from the directory that contains both of these files. npm will discover your feed in the .npmrc file in the current working directory. It will then fetch credentials from your home directory's .npmrc file that you configured in Create a feed.

Publish an npm package

You can now publish the npm package:

  1. Browse to the directory that contains your package's package.json file.

  2. Run npm publish.

The npm publish command will work because of the credentials that you acquired in Set up your .npmrc files.

If you have followed all of the steps up to this point, package publishing should simply work.

Important

If you have npmjs.com configured as an upstream and the package name/version exists in the public registry, you'll be blocked from publication. We don't support overriding packages that exist in the public registry.