/
How to create new NPM package

How to create new NPM package

When you want to create new NPM package

Step-by-step guide

Needs to be done only once

  1. 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/

  2. Run the following command in your npm client. When prompted, provide your Artifactory login credentials:
    npm login

Needs to be done per project (package)

  1. Create new project under  https://gitlab.esss.lu.se/swap/duo-packages  where you will keep the source code of your package

  2. 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-package

  3. Init NPM and answer setup questions
    npm init

  4. To 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/"}

  5. Publish package
    npm publish

Related content