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

create-next-lite-app

v0.5.1

Published

Create Next-Lite apps with one command

Readme

create-next-lite-app is a CLI tool that enables you to quickly start building a new Next-Lite application, with everything set up for you. It provides an intuitive, interactive experience to create new projects with zero configuration needed.

Usage

You can create a new Next-Lite app in several ways, depending on your preferred package manager:

Using npx (recommended)

npx create-next-lite-app my-app

Using yarn

yarn create next-lite-app my-app

Using pnpm

pnpm create next-lite-app my-app

Using flash-install (fastest installation)

# First install flash-install if you don't have it
npm install -g @flash-install/cli

# Then create your app with the --use-flash flag
npx create-next-lite-app my-app --use-flash

Interactive Mode

Running the command without a project name launches interactive mode:

npx create-next-lite-app

This will guide you through the setup process with prompts for:

  • Project name
  • TypeScript support
  • Package manager preference
  • Template selection

Options

create-next-lite-app comes with the following options:

| Option | Description | |--------|-------------| | --typescript | Initialize as a TypeScript project with proper tsconfig and type definitions | | --use-npm | Use npm as the package manager (default) | | --use-yarn | Use yarn as the package manager for faster installations | | --use-pnpm | Use pnpm as the package manager for efficient disk space usage | | --use-flash | Use flash-install for 10-20x faster dependency installation | | --template <name> | Specify a template for the created project (default, minimal, etc.) | | --example <name> | Create project from an example in the Next-Lite repository | | --skip-install | Skip installing dependencies (useful for CI environments) |

Examples

# Create a TypeScript project
npx create-next-lite-app my-app --typescript

# Create a project with yarn
npx create-next-lite-app my-app --use-yarn

# Create a project from an example
npx create-next-lite-app my-app --example with-tailwind

# Create a project with a specific template and skip installation
npx create-next-lite-app my-app --template minimal --skip-install

Why use Create Next-Lite App?

create-next-lite-app allows you to create a new Next-Lite app within seconds. It includes a number of benefits:

  • Interactive Experience: Running npx create-next-lite-app (with no arguments) launches an interactive experience that guides you through setting up a project.
  • Zero Dependencies: Start with a zero-dependency framework that's blazing fast.
  • Offline Support: Create Next-Lite App will automatically detect if you're offline and bootstrap your project using your local package cache.
  • Support for Examples: Create a project from an example in the Next-Lite repository.
  • Tested: The package is part of the Next-Lite monorepo and tested using the same integration test suite as Next-Lite itself, ensuring it works as expected with each release.

Documentation

Visit https://github.com/Nom-nom-hub/next-lite-main/wiki to view the full documentation.

Contributing

We'd love your help improving create-next-lite-app! See our contributing guide to learn about our development process and how to propose bug fixes and improvements.