npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

umbraco-cloud-archiver

v0.4.0

Published

Wizard-based CLI for archiving an Umbraco Cloud project (git, blob storage, database) to disk before shutdown.

Readme

umbraco-cloud-archiver

Wizard-based CLI for archiving an Umbraco Cloud project to local disk before shutting it down.

For each environment (e.g. live, stage, dev) the tool archives:

  • Git repository - both a --mirror clone (full history) and a working copy you can browse
  • Blob storage - the contents of the environment's media blob container, via a SAS URL
  • Database (optional) - a .bacpac export via sqlpackage, or a manual instructions file if you prefer to grab the backup from the Umbraco Cloud portal yourself

Usage

Requires Node.js 20+ and git in your PATH.

npx umbraco-cloud-archiver@latest

The tool walks you through a wizard:

  1. Pick an output base folder.
  2. Choose database backup mode (skip / use sqlpackage).
  3. For each environment: name, git clone URL, blob SAS URL, optionally DB credentials. Loop "add another?" until done.
  4. Confirm and run.

It will offer to download azcopy and sqlpackage into a per-user cache (~/.umbraco-cloud-archiver/bin/) when not found in PATH.

Output structure

<base>/
  live/
    git-mirror/       # bare clone, full history
    repo/             # working copy (browseable)
    blobs/            # blob storage contents
    database/
      <dbname>.bacpac           # if sqlpackage was used
      MANUAL_BACKUP_REQUIRED.txt  # otherwise
  stage/
    ...
  archive-info.json   # metadata about this run

Prerequisites

  • Node.js 20+
  • git available in PATH
  • For DB export: SQL Server account with permissions to export, or grab the backup manually from the Cloud portal
  • A container-level SAS URL per environment (Umbraco Cloud → environment → Storage)

Releasing (maintainers)

CI is GitHub Actions:

  • ci.yml runs build/typecheck on push and PR.
  • release.yml runs on push to main. It uses npm Trusted Publishing (OIDC, no NPM_TOKEN secret) and only publishes if the version in package.json is not already on npm.

To release: bump the version in package.json in a commit, merge to main, done.

One-time setup on npmjs.com: enable trusted publishing for this package, pointing at this repo + release.yml.

License

MIT