-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
github-actions[bot] edited this page Apr 8, 2026
·
2 revisions
Bluetemberg is published to the GitHub Packages npm registry under @prototypdigital/bluetemberg.
- Node.js >= 18
- npm, pnpm, or yarn
- GitHub account with access to the
prototypdigitalorganization
Create or add to your project's .npmrc:
@prototypdigital:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
Set the GITHUB_TOKEN environment variable to a personal access token (classic) with read:packages scope, or a fine-grained token with Packages read permission.
For CI environments, use the built-in GITHUB_TOKEN secret.
npx @prototypdigital/bluetemberg initnpm install -D @prototypdigital/bluetemberg
# or
pnpm add -D @prototypdigital/bluetembergThen use via package scripts:
npx bluetemberg init
npx bluetemberg syncIn GitHub Actions, add the registry setup to your workflow:
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://npm.pkg.github.com'
scope: '@prototypdigital'
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}