How to create new NPM package
When you want to create new NPM package
Step-by-step guide
Needs to be done only once
For your npm command line client to work with Artifactory, you first need to set the default npm registry with an Artifactory npm repository using the following command:
npm config set @swap:registry https://artifactory.esss.lu.se/artifactory/api/npm/swap-npm/Run the following command in your npm client. When prompted, provide your Artifactory login credentials:
npm login
Needs to be done per project (package)
Create new project under https://gitlab.esss.lu.se/swap/duo-packages where you will keep the source code of your package
Clone the repository to your local computer and cd into it
git clone https://gitlab.esss.lu.se/swap/duo-packages/my-package
cd my-packageInit NPM and answer setup questions
npm initTo deploy your package to an Artifactory repository you can add the following to the package.json file:
"publishConfig":{"registry":"https://artifactory.esss.lu.se/artifactory/api/npm/swap-npm/"}Publish package
npm publish