CDN publish is a Node.js bin CLI to manage files on Mia's instance of the bunny.net global CDN storage service.
An instance of a bunny CDN provides a file storage API
that is scoped for your organization by a storageZoneName which is usually provided to you via secret
sharing tools like vault.
Such storageZoneName combined with an access key gives full access to file operations like
- downloads
- put/patch
- delete
Beside providing a helpful (we hope!) wrapper around the basic HTTP client needed to query the API, CDN publish
provides opinionated behaviors that make the put/patch API look like npm publish and yarn npm publish
CDN publish implements an npm publish-like behavior.
When we reference npm publish we also refer to the yarn wrapper for yarn 2+.
The most notable behaviours are:
npm publishwill use thepackage.jsonfile available in the working directory to establish:npmjsregistry does not allow to PUT twice the samesemverversion of a package, like0.1.0or3.0.10-rc2. Although we cannot enforce it on the file storage API, CDN publish enforces it (with possibility to override) on the client side. This is useful to avoid incorrect CI runs.
CDN publish behaves in the exact same fashion.
CDN publish is focused on npm packages publish.
CDN publish has always two required parameter:
-sor--storage-zone-namewhich is thestorageZoneNameyou're targetting;-kor--storage-access-keywhich is the API key of thestorageZoneNameyou're targetting.
Typically a release/deploy pipeline will take care or install node, build your library and caching the build results which must be available to the cdn release job/step.
CDN publish can be invoked as a standalone binary from npm
by installing on your global npm bin store
npm install -g @mia-platform/cdn-publishand then
cdn [options] [command]In a GitHub workflow, the CDN publish CLI can be called by running its container as per the following snippet:
cdn-release:
needs:
[]
# π your dependencies
name: Release on CDN
runs-on: ubuntu-latest
build:
steps:
- name: Build
run: yarn build --dir dist
# π your build commands, depends on the project
- name: Archive Production Artifacts
uses: actions/upload-artifact@v2
with:
name: built-project
path: dist/
cdn-release:
needs: build
name: Test CDN
runs-on: ubuntu-latest
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
with:
name: built-project
path: ./dist
- name: Publish to Mia CDN
run: |
docker run --rm -v $PWD/dist:/dist miaplatform/cdn-publish cdn -k "$STORAGE_ACCESS_KEY" -s "$STORAGE-ZONE" --project ./distOr, if you are running a job with npm installed, you can simply install the cli:
cdn-release:
needs:
[]
# π your dependencies
name: Release on CDN
runs-on: ubuntu-latest
steps:
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install CDN Publish CLI
run: npm i -g @mia-platform/cdn-publish
# ... steps to build or download artifact
- name: Publish to Mia CDN
run: cdn publish -k "$STORAGE_ACCESS_KEY" -s "$STORAGE-ZONE"In a GitLab CI, the CDN publish CLI can be called by running its container as per the following snippet
cdn-release:
stage: release
image: miaplatform/cdn-publish
needs:
[]
# π your dependencies
rules:
[]
# π your rules
cache:
[]
# π your cache
script:
- cdn publish -k "$STORAGE_ACCESS_KEY" -s "$STORAGE-ZONE" --project ./distThis repository can be used as well to run CDN publish
git clone https://github.com/mia-platform/cdn-publish.gitthen install (we recommend using nvm to ensure proper Node.js versioning)
npm i
# or
yarn installthen you can either run Typescript code
npm run cli:run [options] [command]
# or
yarn cli:run [options] [command]or build and test the final bundled binary
npm run build
# or
yarn build
# and then
node dist/index.cjs [options] [command]Here's a list of available commands that CDN publish provides. The
placeholder cdn stands for the command invocation, which could either be:
- [npm]
npx --package "@mia-platform/cdn-publish" cdn - [yarn]
yarn dlx --package "@mia-platform/cdn-publish" cdn - [docker container]
cdn - [local bundle]
node dist/index.cjs - [local install]
npm i -g . && cdn
Provides information on commands and options
cdn help [command]Provides a list of the file currently available on the storage service under a given path/directory
cdn list [options] <dir>with options:
-k,--storage-access-key-- required, thestorageZoneNameaccess key-s,--storage-zone-name-- required, thestorageZoneName-u,--base-url-- the api base url, default is:https://storage.bunnycdn.com
Allows to put/patch files onto the CDN file storage service
cdn publish [options]the files optional argument takes precedence over anything specified in the package.json
file selected (or defaulted) by the invocation of CDN publish
with options:
-k,--storage-access-key-- required, thestorageZoneNameaccess key-s,--storage-zone-name-- required, thestorageZoneName-u,--base-url-- the api base url, default is:https://storage.bunnycdn.com-p,--project-- used to override the location of thepackage.jsonfile. Useful for repositories with workspaces-b,--batch-size-- number of files to be uploaded concurrently--scope-- a directory to prepend to all pushed files. Defaults to thepackage.json'snamefield matched against/^@([^/]+)\//--override-version [string]-- in case the pushed context is sem-versioned, allows to opt-out of the client no-double-push policy on semver packages.--checksum-- requires the server to fail the push if uploaded file has a checksum that does not match with the one computed on the client side.
Allows to put/patch files onto the CDN file storage service
cdn upload [options] [files...]the files are the list of files or directories to push on the cdn. It will throw an error if the folder it is not empty.
with options:
-k,--storage-access-key-- required, thestorageZoneNameaccess key-s,--storage-zone-name-- required, thestorageZoneName-u,--base-url-- the api base url, default is:https://storage.bunnycdn.com-b,--batch-size-- number of files to be uploaded concurrently.--dest-- a directory to prepend to all pushed files.--checksum-- requires the server to fail the push if uploaded file has a checksum that does not match with the one computed on the client side.
Provides cleanup/delete of a directory or a file on the file storage service
cdn delete [options] <dir>with options:
-k,---access-key-- required, thestorageZoneNameaccess key-s,--storage-zone-name-- required, thestorageZoneName-u,--base-url-- the api base url, default is:https://storage.bunnycdn.com--avoid-throwing-- in case of error it avoids returning anexit 1. Useful for CI/CD environments.
Here is a list of commands used to be able to interact with pull zones:
Caution: The '--access-key' token should not be confused with the '--storage-access-key' token, which is used only for file management purposes.
Provides a list of the avaiable pullzones
cdn pullzone list [options]with options:
-k,--access-key-- required, thestorageZoneNameaccess key-u,--base-url-- the api base url, default is:https://api.bunny.net-s,--search-- a query param to filter results (NB. Broken in bunny API!)
The following command is used to purge pull zones, either individually selected or all of them by default. Upon execution, the command provides information about the zone ID and the corresponding API response status, to know the successfully purged zones.
cdn pullzone purge [options]with options:
-k,--access-key-- required, thestorageZoneNameaccess key-u,--base-url-- the api base url, default is:https://api.bunny.net-z,--zone-- to purge only a specific zone id
To run locally this CLI, after checkout, install dependencies by running:
# when using nvm to keep track of node version
nvm use
yarn installthen to run the source code:
yarn cli:run [options] [command]to get help, just run:
yarn cli:run helpIf you'd like to run the bundled CDN CLI:
yarn build
node dist/index.cjs [options] [command]Beside unit tests, integration tests against a test instance of mia bunny CDN are available when running github actions on PR merge request.
If you have access, by owning the test environment access key, integration tests are available also locally.
First initialize some environment variables, for instance by running the following steps:
# .env.local is gitignored
touch .env.local
echo -e "CDN_STORAGE_ACCESS_KEY=<CHANGE_ME>" >> .env.local
echo -e "CDN_STORAGE_ZONE_NAME=<CHANGE_ME>" >> .env.local
echo -e "CDN_STORAGE_BASE_URL=https://storage.bunnycdn.com" >> .env.local
echo -e "CDN_API_BASE_URL=https://api.bunny.net" >> .env.localand then run:
yarn test:integration
β οΈ integration tests are not 100% stable: you might need re-running tests multiple times, Be very careful here!






