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

@bootstrapware/onboard

v0.1.0

Published

Embeddable first-run setup checklist for SaaS. BYO progress or Bootstrapware Hosted.

Readme

@bootstrapware/onboard

Embeddable first-run setup checklist for small production SaaS: required and optional steps, dependencies, eligibility, facts, dismiss, and snooze.

Local / demo is free. BYO is $9.99 / month (you store progress). Hosted is $19.99 / month (Bootstrapware stores progress). Bootstrapware does not authenticate end users. Your app asserts user.id.

pnpm add @bootstrapware/onboard

Peer dependencies: react and react-dom (>= 18).

Local / demo

import { Onboard, createLocalAdapter } from "@bootstrapware/onboard";
import "@bootstrapware/onboard/styles.css";

<Onboard
  user={{ id: session.user.id, name: session.user.name }}
  workspaceKey={workspace.id}
  adapter={createLocalAdapter({ storageKey: "demo-onboard" })}
  items={[
    { key: "create_workspace", title: "Create your workspace", progressScope: "workspace" },
    { key: "invite_teammate", title: "Invite a teammate", dependsOn: ["create_workspace"], progressScope: "workspace" },
  ]}
/>

Hosted

Publishable keys may appear in the browser. Secret keys must stay server-side. Never mint keys via MCP.

<Onboard
  flowId="flw_..."
  publishableKey="bsw_live_pub_..."
  user={currentUser}
  workspaceKey={workspace.id}
  authorToken={authorTokenFromBff}
/>

Optional apiBaseUrl defaults to https://onboard.bootstrapware.co.

BYO ($9.99): pass an OnboardAdapter. Progress stays on your backend. See the packaged AGENTS.md.

Security

  • Do not put bsw_live_sec_ or bsw_test_sec_ in client code.
  • Host-asserted user.id can be forged if a publishable key leaks. Mitigate with origins and requireAuthorToken plus a secret-minted authorToken.
  • Never send host context or flags through MCP. MCP configures flows only.

Docs

  • Product: https://bootstrapware.co/onboard
  • Agent rules (AGENTS.md): https://bootstrapware.co/onboard/docs/agents

For coding agents, copy the packaged AGENTS.md into your repo rules, or point the agent at the docs URL above.

License

MIT