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

next2point0

v1.1.3

Published

Modern Next.js starter template featuring a scalable, feature-based architecture for frontend and backend development.

Readme

next2point0

Modern Next.js starter template with a scalable, feature-based architecture — scaffold a new app in seconds.

npm version npm downloads license

A zero-config CLI that bootstraps a production-ready Next.js project from the next2point0 template — pick a Frontend or Frontend + Backend flavor and start coding.


Quick Start

npx next2point0 my-app

That's it. The CLI will:

  1. Ask you to pick a template (Frontend or Frontend + Backend)
  2. Clone the chosen branch into ./my-app
  3. Detach git history and initialize a fresh repo
  4. Print the next steps for your detected package manager

Usage

npx next2point0 <project-name> [options]

Options

| Flag | Alias | Description | | --- | --- | --- | | --template <name> | -t | Template to use: frontend or fullstack | | --pm <name> | | Package manager hint for the next-steps message: bun, pnpm, npm, yarn | | --skip-git | | Skip initializing a new git repository | | --yes | -y | Accept defaults (template: frontend) | | --help | -h | Show help | | --version | -v | Show version |

Examples

# Interactive — pick a template via prompt
npx next2point0 my-app

# Fullstack template with pnpm hint
npx next2point0 my-app -t fullstack --pm pnpm

# Non-interactive, defaults to frontend
npx next2point0 my-app -y

# Don't initialize a fresh git repo
npx next2point0 my-app --skip-git

Templates

| Template | Branch | What's inside | | --- | --- | --- | | Frontend | main | Next.js + Tailwind CSS, feature-based folder structure | | Frontend + Backend | feat/backend | Everything in Frontend, plus API routes and backend scaffolding |

Both templates ship with a scalable, feature-first folder layout so your app stays organized as it grows.


Requirements

  • Node.js >= 16
  • git available on PATH
  • One of: bun, pnpm, npm, or yarn (auto-detected)

Install Globally (Optional)

You don't need to install anything — npx handles it. But if you'd rather have it on your machine:

npm install -g next2point0
next2point0 my-app

The binary is also exposed as create-next2point0.


After Scaffolding

cd my-app
<pm> install      # bun / pnpm / npm / yarn
<pm> run dev

Open http://localhost:3000 and you're off.


Contributing

Issues and PRs are welcome on the GitHub repo. If you'd like to add a new template variant, open an issue first to discuss the structure.


License

MIT © ahmad2point0