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

@apppilot/node

v1.0.0

Published

Server SDK for AppPilot AI — signed end-user sessions, webhook verification, and a typed REST client.

Readme

AppPilot SDKs

| Package | Install | Use | | --- | --- | --- | | @apppilot/widget | npm i @apppilot/widget | Vanilla JS / any framework | | @apppilot/react | npm i @apppilot/react | React 18/19, Next.js, Vite | | @apppilot/node | npm i @apppilot/node | Server: signed sessions, webhook verification, REST |

No npm account needed? Import the self-hosted ESM builds instead:

import { loadAppPilot } from "https://apppilot.tech/sdk/v1/widget.mjs";

Local development

bun run build:sdk      # bundles ESM builds into public/sdk/v1/
bun run build:packages # builds npm dist/ output for all three packages

Releasing (automated)

Releases run through GitHub Actions — never publish by hand.

  1. Own the @apppilot org on npmjs.com and create an automation token.
  2. Add it as the repository secret NPM_TOKEN (Settings → Secrets → Actions).
  3. Run the Release SDK workflow (Actions tab → Run workflow) and choose the bump (patch / minor / major / explicit 1.2.3), the npm dist-tag, and whether it is a dry run.

The workflow: typechecks → bumps every version in lockstep → builds npm dist and the hosted ESM bundles → runs scripts/smoke-sdk.mjs against the built artifacts → verifies each tarball with npm pack --dry-run → generates the changelog from Conventional Commits → publishes all three packages with provenance → commits, tags sdk-v<version> and opens a GitHub release.

Any failing smoke test aborts the run before anything is published.

.github/workflows/sdk-ci.yml runs the same build + smoke suite on every PR touching packages/, and fails if the versions drift out of sync.

Local equivalents

bun run sdk:version patch   # bump every version (packages, widget source, app endpoint)
bun run sdk:smoke           # build npm + ESM output, then run the release smoke tests
bun run sdk:changelog 1.1.0 # prepend release notes to CHANGELOG.md

Commit messages follow Conventional Commits (feat(react): …, fix(node): …); the changelog generator groups them and flags ! / BREAKING CHANGE commits.