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

@nilovonjs/create-app

v1.1.4

Published

Create a new Nilovon project with a single command

Readme

✨ @nilovonjs/create-app

A modern, type-safe app generator, built and maintained by Nilovon.

@nilovonjs/create-app is a command-line tool that scaffolds a ready-to-run full-stack application in seconds. It wires together a modern Next.js stack, sensible defaults, and automation so you can focus on building features instead of boilerplate. 🚀


🎯 Key features

  • Full-stack Next.js 15 starter with the App Router and strict TypeScript.
  • 🔒 Type-safe end-to-end stack: from database to UI, with rich inference.
  • 🧩 Pluggable modules for auth, database, ORM, RPC, linting, Docker, and more.
  • 🛠️ Fast DX: preconfigured tooling, scripts, and project layout.
  • 🎨 Clean CLI experience powered by @clack/prompts.

Technologies used by the default templates include:

| Technology | Purpose | |---|---| | 🌐 Next.js 15 | App framework | | 🗄️ Drizzle ORM / Prisma | Database ORM | | 🐘 Neon | Hosted Postgres | | 🔌 oRPC | Typed client/server communication | | 🔑 BetterAuth | Authentication | | ✅ ArkType | Runtime validation | | 🧹 Biome / ESLint + Prettier / Oxlint | Linting & formatting |


📦 Installation

You can invoke the CLI with any of the following:

npx @nilovonjs/create-app@latest
pnpm dlx @nilovonjs/create-app@latest
bunx @nilovonjs/create-app@latest

No global install is required — the latest published version will be used. 🎉


🚀 Creating a new project

Interactive mode (recommended) 💬

Run the CLI and answer a few prompts:

npx @nilovonjs/create-app@latest

You will be asked about:

  • 📝 Project name
  • 📦 Package manager (npm, pnpm, bun)
  • 🔑 Authentication (BetterAuth or none)
  • 🗄️ ORM (Drizzle, Prisma, or none)
  • 🐘 Database provisioning (Neon)
  • 🔌 oRPC support
  • 🧹 Linting & formatting (Biome, ESLint + Prettier, Oxlint)
  • 🌱 Git initialization
  • 🐳 Dockerfile

Non-interactive mode 🤖

You can also pass flags directly to skip the prompts:

npx @nilovonjs/create-app@latest \
  --project-name my-app \
  --auth better-auth \
  --orm drizzle \
  --orpc \
  --lint biome \
  --git \
  --run-time bun

⚙️ CLI options

| Flag | Description | |---|---| | -n, --project-name <name> | Name of the folder / project | | --auth <type> | Authentication strategy (better-auth or none) | | --orm <type> | ORM (drizzle, prisma, or none) | | --lint <type> | Linter/formatter (biome, eslint-prettier, or oxlint) | | --orpc / --no-orpc | Include or exclude oRPC | | --git / --no-git | Initialize a git repository | | --docker / --no-docker | Add a Dockerfile | | --run-time <runtime> | Package manager (node, pnpm, or bun) |


📂 Generated project overview

A typical project created with @nilovonjs/create-app includes:

  • 🌐 Next.js app with a clean, opinionated file structure.
  • 📘 Strict TypeScript configuration for catching issues early.
  • 🎨 Styling setup (Tailwind CSS) for fast UI work.
  • 🔑 Auth integration with secure defaults when enabled.
  • 🗄️ Database layer using Drizzle ORM or Prisma with Neon (when selected).
  • 🔌 RPC layer using oRPC (when selected).
  • 🧹 Tooling such as formatting, linting, and build scripts preconfigured.

After generation, get started with:

cd <your-project-name>
npm run dev   # or pnpm dev / bun run dev

🤝 Contributing & feedback

@nilovonjs/create-app is coded by Nilovon. 💜

  • 🐛 Open an issue describing your use case.
  • 💡 Suggest additional stack options or integrations.
  • 🔧 Send a pull request with small, focused changes.

📄 License

This project is licensed under the MIT License. See LICENSE.md for details.