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

next-sky-cli

v0.0.13

Published

CLI tool to create Next.js projects from next-sky template

Readme

next-sky-cli

Bootstrap production-ready Next.js projects from the next-sky template.

A simple CLI for creating new projects from a pre-configured Next.js starter.

npm version npm downloads License Node.js


What is next-sky-cli?

next-sky-cli bootstraps a new project from the next-sky repository.

Unlike create-next-app, which generates a clean Next.js application, next-sky-cli downloads a maintained project template that already includes the tooling, configuration, and project structure commonly required for modern application development.

Instead of spending time configuring a new project, you can start implementing your application immediately.


Features

  • Bootstrap projects from the next-sky template.
  • Support for GitHub, Scorpian Mirror, and custom Git repositories.
  • Support for pnpm and npm.
  • Support for custom npm registries.
  • Automatic dependency installation.
  • Automatic project configuration.
  • Fresh Git repository initialization.
  • Interactive and command-line modes.

Requirements

  • Node.js 18+
  • Git
  • pnpm (optional, recommended)

Usage

Create a new project:

npx next-sky-cli my-app

Use a specific repository:

npx next-sky-cli <username/repository> my-app

Example:

npx next-sky-cli mfelfelani72/next-sky my-app

Create inside the current directory:

npx next-sky-cli .

Run in interactive mode:

npx next-sky-cli

What the CLI Does

The CLI performs the following steps automatically:

  1. Downloads the selected project template.
  2. Removes the original Git history.
  3. Updates project metadata.
  4. Installs dependencies.
  5. Initializes a new Git repository.

Supported Git Sources

  • GitHub
  • Scorpian Git Mirror
  • Custom Git Repository

Supported Package Managers

  • pnpm (recommended)
  • npm

Supported npm Registries

  • Official npm Registry
  • Liara Mirror
  • Custom Registry

Getting Started

cd my-app

Using pnpm:

pnpm dev

Using npm:

npm run dev

About the Template

next-sky-cli installs the next-sky project template.

The template is designed to provide a practical starting point for building real-world applications. Rather than starting from a minimal Next.js installation, you begin with a project that already includes a modern development stack and a well-organized structure.

Depending on the template version, it may include:

  • Next.js
  • TypeScript
  • Tailwind CSS
  • ESLint
  • Prettier
  • Organized project structure
  • Development tooling and recommended defaults

As the template evolves, newly generated projects automatically benefit from the latest improvements.


Contributing

Contributions, issues, and feature requests are welcome.


License

MIT License

Copyright © Mohammad Felfelani