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

@nestledjs/upgrades

v0.1.0

Published

Consume and apply Nestled template upgrades in a cloned project (nestled-update).

Readme

@nestledjs/upgrades

nestled-update — apply Nestled template upgrades to a cloned project.

A project created from nestled-template uses this package to pull published upgrades from its channel and apply them, tracking what it has already received in .nestled/upgrade-log.yaml. Note authoring stays private (only the template maintainer produces upgrades); every clone only ever consumes.

Model

  • Manifest — the published feed: an ordered list of releases plus a pointer per channel (canary, stable). A clone on channel C applies every release with baseline < release.id <= channels[C]. Canary points ahead of stable, so the maintainer's fleet validates a release before the world sees it.
  • Baseline — each clone remembers the release it started from. Fresh clones read it from a committed .nestled/template-version stamp; nestled-update init records it, and each apply advances it.

See docs/DISTRIBUTION-SPEC.md in the nestled-upgrader repo for the full design.

CLI

nestled-update init      # establish this clone's baseline + channel
nestled-update check     # show pending upgrades (no changes)
nestled-update status    # show channel, baseline, applied history
nestled-update apply     # apply pending upgrades

How it reads the feed

The feed lives in the public nestled-template repo under .nestled-upgrades/ (manifest.yaml + patches/*.diff). nestled-update adds the template as an upstream remote, git fetches the feed ref, and reads the manifest + patches via git show — no working checkout of the template. For local development/ testing, --manifest <file> reads a manifest off disk instead.

Configure the feed once at init:

nestled-update init --remote <template-git-url> --ref develop --channel stable

Status

  • Phase 1 — manifest schema, baseline stamp, channel-aware pending, and init / check / status.
  • Phase 2 — real apply: git-fetch feed transport, branch per run, 3-way patch application, package-release version bumps, verification gating with clean rollback on failure, baseline advancement, and optional --pr.

Still to come (producer side, in the private repo): the publish / promote-release / baseline-fleet commands that write releases into the template feed and move channel pointers.