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

@indago/create-app

v1.1.0

Published

Scaffold a Vite/Vike/React-Router/TanStack/Next.js app wired to the HyperDown (Markdown → SQLite FTS5) and HyperJson (JSON Schema → typed content) engines.

Downloads

490

Readme

@indago/create-app

Scaffold a backend-free, content-driven web app wired to the two Indago engines:

  • HyperDown — Markdown/MDX → a contentless SQLite FTS5 index, queried only on the server. Powers full-text search over articles & recipes with no client database.
  • HyperJson — JSON Schema → build-time validation + generated TypeScript types. Powers typed structured content (projects).

Pick from four frameworks — every template ships the same routes, so one app's knowledge (and one e2e suite) carries across all of them.

Usage

# interactive (prompts for directory + framework + package manager)
npm create @indago/app@latest
bunx  @indago/create-app
pnpm  create indago-app

# non-interactive
bunx @indago/create-app my-app --vike
bunx @indago/create-app my-app --react-router
bunx @indago/create-app my-app --tanstack
bunx @indago/create-app my-app --next

Flags

| Flag | Framework | | ---------------- | --------------------------------------------------- | | --vike | Vike + vike-react + Hono (SSG + live SSR search) | | --react-router | React Router v7 framework mode (Vite + SSR loaders) | | --tanstack | TanStack Start (Vite + server functions) | | --next | Next.js App Router (@next/mdx + node:sqlite) |

Other options: [dir] (target directory), --pm <bun\|npm\|pnpm\|yarn>, --no-install.

Standardized routes

Generated apps expose the identical route surface (default locale prefix-free, pt-BR under /pt):

| Route | Engine | | ----------------- | --------- | | / | — | | /articles | HyperDown | | /articles/:slug | HyperDown | | /cooking | HyperDown | | /cooking/:slug | HyperDown | | /projects | HyperJson | | /pt/* | — |

A shared Playwright suite (e2e/) and a unit test (__tests__/content.test.ts) ship in every template and assert the same behavior, so all four are interchangeable from a testing standpoint.

Framework matrix

| Capability | Vike | React Router | TanStack Start | Next.js | | ----------- | --------------- | ------------------ | ---------------- | ---------------------------- | | Bundler | Vite | Vite | Vite | Webpack | | Server data | +data loaders | route loader | createServerFn | Server Components | | MDX bodies | Vite glob | Vite glob | Vite glob | explicit @next/mdx imports | | Prod server | Hono | react-router-serve | srvx | next start |

Requirements

  • Bun must be on PATH for builds — HyperDown's content writer runs as a bun subprocess.
  • Node ≥ 22 (or Bun) at runtime, for the built-in SQLite reader (node:sqlite / bun:sqlite).

Authoring content

  • Articles / recipes — drop an .mdx file under content/article/<locale>/ or content/recipe/<locale>/; the filename is the slug. Rebuild to regenerate the SQLite index.
  • Projects — edit content/projects/<locale>/projects.json, validated against content/projects/schema.json at build time.

Development (this package)

bun run dev                       # run the CLI from source
bun run test                      # scaffold-tool unit tests (__tests__/)
bun scripts/test-templates.ts     # scaffold + build + typecheck + unit + e2e, all 4 templates
bun scripts/test-templates.ts next   # a single template
bun run gen:examples              # regenerate examples/<id>/ from the templates