Setting auth tokens for NPM registry

PHOTO EMBED

Tue Dec 29 2020 20:45:20 GMT+0000 (Coordinated Universal Time)

Saved by @armans92 #bash

# Set URL for your scoped packages.
# For example package with name `@foo/bar` will use this URL for download
npm config set @my-org:registry https://private-gitlab.com/api/v4/projects/<your_project_id>/packages/npm/

# Add the token for the scoped packages URL. Replace <your_project_id>
# with the project where your package is located.
npm config set '//private-gitlab.com/api/v4/projects/<your_project_id>/packages/npm/:_authToken' "<your_token>"
content_copyCOPY