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

create-hogsend

v0.21.2

Published

Scaffold a Hogsend lifecycle orchestration app (consumes @hogsend/engine).

Readme

create-hogsend

Scaffold a Hogsend lifecycle orchestration app that consumes the versioned @hogsend/engine package.

pnpm dlx create-hogsend my-app
# or: npm create hogsend my-app

What it does

  1. Copies the starter template (template/) into ./my-app, renaming dotfiles (gitignore.gitignore, env.example.env.example, node-version.node-version, _package.jsonpackage.json) and substituting the {{APP_NAME}} / {{ENGINE_VERSION}} tokens.
  2. git init + an initial commit (--no-git to skip).
  3. Installs dependencies with the chosen package manager (--no-install to skip).

The emitted app pins all @hogsend/* packages to a single engine version line (ENGINE_VERSION in src/template-manifest.ts, currently matching @hogsend/engine 0.0.1).

CLI options

create-hogsend <app-name> [options]

  --pm <pnpm|npm|yarn|bun>   Package manager (default: pnpm)
  --no-install               Skip dependency install
  --no-git                   Skip git init + initial commit
  --use-tarballs <dir>       TEST-ONLY: resolve @hogsend/* from local tarballs
  -h, --help                 Show help

How the scaffolded app consumes the engine

All @hogsend/* packages ship raw .ts (no dist). The scaffold therefore carries the two seams that make raw-.ts consumption work:

  • tsup.config.ts with noExternal: ["@hogsend/*"] — bundles (inlines) the engine source at pnpm build, since Node's resolver cannot run the raw .ts
    • .js-extension imports directly.
  • vitest.config.ts with server.deps.inline: [/@hogsend\/engine/] — lets Vite transform the raw .ts for tests.

Local verification (no registry — Phase 3)

The @hogsend/* packages are not published yet, so the verification harness resolves them from local pnpm pack / npm pack tarballs via file: specifiers (the --use-tarballs flag), NOT from a registry.

pnpm --filter create-hogsend verify
# = packages/create-hogsend/scripts/verify-scaffold.sh

The harness:

  1. Builds the CLI and asserts dist/index.js has the #!/usr/bin/env node shebang.
  2. Packs every @hogsend/* workspace into a /tmp tarball dir and asserts each tarball carries package/src/** (the raw .ts the consumer bundles).
  3. Scaffolds my-app into a clean /tmp dir with --use-tarballs, asserting filesystem completeness, token substitution, and no {{token}} / workspace: residue.
  4. pnpm install + pnpm check-types + pnpm build (asserts dist/index.js and dist/worker.js) + biome check in the scaffolded app.
  5. Removes all /tmp dirs — nothing is left in the repo.

check-types against the engine's real .ts types (resolved from the tarball) is the strongest correctness signal.

Full end-to-end boot (manual)

Booting the scaffolded app fully — docker compose up, pnpm db:migrate, fire test.signup, watch the journey complete + tracked email — needs live Timescale/Redis/Hatchet and a Hatchet token, so it is a documented MANUAL step (see the scaffolded app's README.md → "Verify the pipeline"). The monorepo's own apps/api smoke test already proves this exact pipeline against the engine.

Releasing (Phase 4 — DRY-RUN ONLY here)

ENGINE_VERSION must stay in lockstep with @hogsend/engine's version. Changesets bumps both. Publishing is out of scope for Phase 3.