---
description: Install private Capawesome Insiders npm packages in Azure DevOps pipelines. Configure access tokens, npm registry, and CI/CD for Capacitor apps.
title: Integrate Capawesome Insiders with Azure DevOps - Capawesome
image: https://capawesome.io/docs/assets/images/social/insiders/integrations/azure-devops.png
---

[ Skip to content](#azure-devops) 

[ 🎉 Introducing **Capawesome Platform** — one platform for Live Updates, Native Builds, App Store Publishing, and Insider SDKs.](https://capawesome.io) 

* [  Formbricks ](/docs/plugins/formbricks/)
* [  Geocoder ](/docs/plugins/geocoder/)
* [  Google Sign-In ](/docs/plugins/google-sign-in/)
* [  libSQL ](/docs/plugins/libsql/)
* [  Live Update ](/docs/plugins/live-update/)
* [  Managed Configurations ](/docs/plugins/managed-configurations/)
* [  Media Session ](/docs/plugins/media-session/)
* [  ML Kit ](/docs/plugins/mlkit/)
* [  NFC ](/docs/plugins/nfc/)
* [  OAuth ](/docs/plugins/oauth/)
* [  Pedometer ](/docs/plugins/pedometer/)
* [  Photo Editor ](/docs/plugins/photo-editor/)
* [  PostHog ](/docs/plugins/posthog/)
* [  Printer ](/docs/plugins/printer/)
* [  Purchases ](/docs/plugins/purchases/)
* [  RealtimeKit ](/docs/plugins/realtimekit/)
* [  Screen Orientation ](/docs/plugins/screen-orientation/)
* [  Screenshot ](/docs/plugins/screenshot/)
* [  Secure Preferences ](/docs/plugins/secure-preferences/)
* [  Speech Recognition ](/docs/plugins/speech-recognition/)
* [  Speech Synthesis ](/docs/plugins/speech-synthesis/)
* [  Share Target ](/docs/plugins/share-target/)
* [  Square Mobile Payments ](/docs/plugins/square-mobile-payments/)
* [  SQLite ](/docs/plugins/sqlite/)
* [  Superwall ](/docs/plugins/superwall/)
* [  Torch ](/docs/plugins/torch/)
* [  Wifi ](/docs/plugins/wifi/)
* [  Zip ](/docs/plugins/zip/)
* [  Cloud ](/docs/cloud/)
* [  Live Updates ](/docs/cloud/live-updates/)
* Advanced
* Integrations
* [  Native Builds ](/docs/cloud/native-builds/)
* [  Configuration ](/docs/cloud/native-builds/configuration/)
* [  Environments ](/docs/cloud/native-builds/environments/)
* Guides
* [  Sample Projects ](/docs/cloud/native-builds/sample-projects/)
* [  Troubleshooting ](/docs/cloud/native-builds/troubleshooting/)
* [  Automations ](/docs/cloud/automations/)
* [  Assist ](/docs/cloud/assist/)
* Account
* Organizations
* [  Organization and User Management ](/docs/cloud/organizations/memberships/)
* [  Single Sign-On (SSO) ](/docs/cloud/organizations/sso/)
* [  Teams ](/docs/cloud/organizations/teams/)
* [  Two-Factor Authentication ](/docs/cloud/organizations/two-factor-authentication/)
* [  Integrations ](/docs/cloud/integrations/)
* [  License Keys ](/docs/cloud/license-keys/)
* [  Webhooks ](/docs/cloud/webhooks/)
* [  Pricing ](https://capawesome.io/pricing/)
* [  FAQ ](/docs/cloud/faq/)
* [  Support ](/docs/cloud/support/)
* [  Contributing ](/docs/contributing/)
* [  LLMs ](/docs/llms/)
* [  Insiders ](/docs/insiders/)
* [  Pipeline Configuration ](#pipeline-configuration)
* [  Bitbucket Pipelines ](/docs/insiders/integrations/bitbucket-pipelines/)
* [  Capawesome Cloud ](/docs/insiders/integrations/capawesome-cloud/)
* [  Cloudflare Pages ](/docs/insiders/integrations/cloudflare-pages/)
* [  GitHub Actions ](/docs/insiders/integrations/github-actions/)
* [  GitLab CI/CD ](/docs/insiders/integrations/gitlab-ci/)
* [  Ionic Appflow ](/docs/insiders/integrations/ionic-appflow/)
* [  Jenkins ](/docs/insiders/integrations/jenkins/)
* [  Vercel ](/docs/insiders/integrations/vercel/)
* [  License ](https://capawesome.io/legal/eula/)
* [  Support ](/docs/insiders/support/)
* [  FAQ ](/docs/insiders/faq/)
* [  Blog ](/blog/)
* Categories

* [  Pipeline Configuration ](#pipeline-configuration)

# Azure DevOps[¶](#azure-devops "Permanent link")

You can use private Capawesome npm packages within your [Azure Pipelines](https://azure.microsoft.com/products/devops/pipelines) by configuring the Capawesome npm registry. This guide shows you how to set up authentication to access the private packages from the Capawesome Insiders program.

## Preparation[¶](#preparation "Permanent link")

### Create an Azure Pipeline Variable[¶](#create-an-azure-pipeline-variable "Permanent link")

[Get your license key](/docs/insiders/faq/#where-can-i-find-my-license-key) and add it to your Azure Pipeline as a secret variable with the name `CAPAWESOME_NPM_REGISTRY_TOKEN` as described in [Set secret variables](https://learn.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables). Make sure to mark the variable as secret.

Keep your license key secure 

Never commit your license key directly to your repository and always use environment variables to store sensitive information like authentication tokens.

## Pipeline Configuration[¶](#pipeline-configuration "Permanent link")

### Configure the npm registry[¶](#configure-the-npm-registry "Permanent link")

Add the following script steps to your Azure Pipeline **before** installing npm dependencies:

`[](#%5F%5Fcodelineno-0-1)- script: echo "@capawesome-team:registry=https://npm.registry.capawesome.io" >> .npmrc
[](#%5F%5Fcodelineno-0-2)  displayName: Configure Capawesome npm registry
[](#%5F%5Fcodelineno-0-3)- script: echo "//npm.registry.capawesome.io/:_authToken=$(CAPAWESOME_NPM_REGISTRY_TOKEN)" >> .npmrc
[](#%5F%5Fcodelineno-0-4)  displayName: Authenticate with Capawesome registry
`

This will automatically configure npm to use the Capawesome registry for `@capawesome-team` packages during Azure DevOps builds.

### Example[¶](#example "Permanent link")

Here's a complete example of an `azure-pipelines.yml` file that builds an Ionic app using private Capawesome packages:

`[](#%5F%5Fcodelineno-1-1)trigger:
[](#%5F%5Fcodelineno-1-2)- main
[](#%5F%5Fcodelineno-1-3)
[](#%5F%5Fcodelineno-1-4)pool:
[](#%5F%5Fcodelineno-1-5)  vmImage: ubuntu-latest
[](#%5F%5Fcodelineno-1-6)
[](#%5F%5Fcodelineno-1-7)variables:
[](#%5F%5Fcodelineno-1-8)  - name: nodeVersion
[](#%5F%5Fcodelineno-1-9)    value: '20.x'
[](#%5F%5Fcodelineno-1-10)
[](#%5F%5Fcodelineno-1-11)jobs:
[](#%5F%5Fcodelineno-1-12)- job: Build
[](#%5F%5Fcodelineno-1-13)  displayName: Build App
[](#%5F%5Fcodelineno-1-14)  steps:
[](#%5F%5Fcodelineno-1-15)  - checkout: self
[](#%5F%5Fcodelineno-1-16)    displayName: Checkout Repository
[](#%5F%5Fcodelineno-1-17)  - task: UseNode@1
[](#%5F%5Fcodelineno-1-18)    inputs:
[](#%5F%5Fcodelineno-1-19)      version: $(nodeVersion)
[](#%5F%5Fcodelineno-1-20)    displayName: Setup Node.js $(nodeVersion)
[](#%5F%5Fcodelineno-1-21)  - script: echo "@capawesome-team:registry=https://npm.registry.capawesome.io" >> .npmrc
[](#%5F%5Fcodelineno-1-22)    displayName: Configure Capawesome npm registry
[](#%5F%5Fcodelineno-1-23)  - script: echo "//npm.registry.capawesome.io/:_authToken=$(CAPAWESOME_NPM_REGISTRY_TOKEN)" >> .npmrc
[](#%5F%5Fcodelineno-1-24)    displayName: Authenticate with Capawesome registry
[](#%5F%5Fcodelineno-1-25)  - script: npm ci
[](#%5F%5Fcodelineno-1-26)    displayName: Install Dependencies
[](#%5F%5Fcodelineno-1-27)  - script: npx cap sync
[](#%5F%5Fcodelineno-1-28)    displayName: Sync Capacitor
[](#%5F%5Fcodelineno-1-29)  - script: npm run build
[](#%5F%5Fcodelineno-1-30)    displayName: Build App
[](#%5F%5Fcodelineno-1-31)  - task: PublishBuildArtifacts@1
[](#%5F%5Fcodelineno-1-32)    inputs:
[](#%5F%5Fcodelineno-1-33)      pathtoPublish: 'dist'
[](#%5F%5Fcodelineno-1-34)      artifactName: 'build-output'
[](#%5F%5Fcodelineno-1-35)    displayName: Publish Build Artifacts
`

May 7, 2026 

 Back to top 