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

tb-create-next-app

v1.2.0

Published

Custom cli tool to create a Nextjs app with Ts and App Router

Downloads

12

Readme

Next.js Scaffolding Tool

New project repo here

tb-create-next-app is a lightweight scaffolding tool for Next.js projects (currently in active development).

How to use it

You can create a new project interactively by running:

npx tb-create-next-app@latest [your-project-name]
# or
bunx tb-create-next-app [your-project-name]
# or
pnpx tb-create-next-app [your-project-name]
# or
yarn dlx tb-create-next-app [your-project-name]

Note: yarn dlx is available only in Yarn v2 and above.

You will then be prompted to provide the necessary input for your project setup.

Example:

npx tb-create-next-app@latest myawesomeproject

Available options

usage: tb-create-next-app [projectName] [options]

Arguments:
  projectName                   Your project name

Options:
  -v, --version

        Output the current version of tb-create-next-app.

  --app-version <version?:string>

        Specify your application version. It will be set in your project's
        package.json `version` field.
        Default to '0.1.0' when running tb-create-next-app for the first time on your system.

  --app-description <description?:string>

        Description for your application, It will be set in your project's
        package.json `description` field.

  --git-repo <git-repo-url?:string>

        Git repository URL for the project. If specified, it should be a valid repository URL.
        It will be set in your project's package.json repository.url field and
        used to initialize Git if allowed.

  --pck-manager <package-manager:string>

        Package manager to use; can be npm, yarn, pnpm, bun or any valid
        package manager.

  --skip-git

        Specify this option to avoid git initialization

  --skip-install

        Specify this option to avoid package installation

  -h, --help

        display help for command

Why this project

Repetitive Setup Work

When starting a new project, I often copy-paste configurations from previous ones for tasks like:

  • Testing environments
  • Authentication (NextAuth, Clerk...)
  • Linting/Formatting (ESLint, Prettier)
  • Docker & CI/CD

This process is:

  1. Time-consuming
  2. Error-prone
  3. Difficult to maintain consistency across projects

Constantly switching between projects to:

  • Recall specific configurations
  • Look up syntax for tools like Docker or GitHub Actions
  • Verify best practices

Solutions

Use create-next-app

While create-next-app provides excellent starter templates, it has limitations:

  • Rigid template structure
  • No selective feature inclusion
  • Limited to initial setup only

I can use it with a GitHub repo, but each project has its own needs and setup requirements.

In some projects you might want to include A and C but not B. In others, you may only need A and neither B nor C.

Inspiration from create-next-app

Initially, I wanted to create a more flexible scaffolding tool inspired by create-next-app, drawing heavily from its package implementation — that’s how tb-create-next-app` was born.

Current vision:

  1. Modular Architecture

    • Select only needed features
  2. Lifecycle Management

    • Scaffolding → Development → Deployment
  3. Framework Agnostic Vision

    • Future expansion to other frameworks (React, Vue, Svelte, etc.)

Think of it as a developer's vizier—handling repetitive tasks so you can focus on building.

Explore the new project repository