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

@nexus_js/create-nexus

v0.9.21

Published

Create a new Nexus app — npm create @nexus_js/nexus (scoped; avoids unscoped name conflicts on npm)

Readme

@nexus_js/create-nexus

Official project scaffold for Nexus. Published under the @nexus_js scope so you can publish without fighting for the global name create-nexus on npm.

npm maps npm create @scope/name to the package @scope/create-name:

npm create @nexus_js/nexus@latest
pnpm create @nexus_js/nexus
yarn create @nexus_js/nexus
bunx @nexus_js/create-nexus@latest

With a folder name:

npm create @nexus_js/nexus@latest my-app

Interactive setup (default in a terminal)

Running create without --yes starts a short wizard (similar to Next.js / Nuxt):

  1. Project directory — folder name under the current path (default my-nexus-app, or the name you passed as the first argument).
  2. Starterminimal or full (unless you already passed -t / --template).
  3. Summary — confirm with Y before files are written.

If the target folder already exists, the CLI exits with an error (no overwrite).

Non-interactive / CI

Use --yes (or -y, --defaults) to skip all prompts:

  • Directory: first positional argument, or my-nexus-app.
  • Starter: --template, or full by default.
npm create @nexus_js/nexus@latest -- --yes
npx @nexus_js/create-nexus@latest ci-app --yes --template minimal

Starter templates

| Template | Flag | What you get | |----------|------|----------------| | Minimal | --template minimal or -t minimal | One landing +page.nx, simple +layout.nx, no i18n, no example blog or /islands route — closest to a blank slate. | | Full | --template full or -t full (default when non-interactive) | i18n (en/es/pt), islands presentation page, blog examples. |

npm create @nexus_js/nexus@latest my-app -- --template minimal
npx @nexus_js/create-nexus@latest my-app -t full

Direct binary (same as above):

npx @nexus_js/create-nexus@latest my-app

Then:

cd my-app
npm install   # or: pnpm install / yarn / bun install
npm run dev     # or: pnpm dev / yarn dev / bun run dev

The implementation lives in @nexus_js/cli; this package only wires the create entrypoint.

License

MIT © Nexus contributors