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-app-setup

v0.1.0

Published

A CLI tool to quickly set up frontend & backend projects with various frameworks.

Readme

create-app-setup

A CLI tool to quickly set up frontend & backend projects with various frameworks.

create-app-setup simplifies the process of setting up new projects by providing an easy-to-use command-line interface that can create project templates with a variety of frameworks and configurations.

Features

  • Quickly set up frontend and backend projects.
  • Supports popular frameworks like React, Next.js, Vite, etc.
  • Configurable setup options like TypeScript, ESLint, Prettier, Jest, Storybook, and more.
  • Cross-platform support (Windows, Linux, macOS).
  • Customizable configurations for various tech stacks.

Installation

You can install create-app-setup globally using npm or yarn:

npm install -g create-app-setup

Or use it directly without installing globally:

npx create-app-setup

Usage

Once installed, you can use create-app-setup to initialize a new project. The CLI will guide you through various configuration options to set up your project.

Example Command:

create-app-setup my-project

This command will start the setup for a new project called my-project. The tool will prompt you to choose frameworks, languages, package managers, and more.

Setup Options

  1. Choose the Framework: React, Next.js, Vite, etc.
  2. Choose the Language: JavaScript or TypeScript.
  3. Add ESLint: Choose whether to add ESLint for linting.
  4. Add Prettier: Choose whether to add Prettier for code formatting.
  5. Add Storybook: Enable Storybook for component development.
  6. Testing Setup: Choose your testing framework, like Jest.
  7. Choose Package Manager: npm, yarn, or pnpm.
  8. Choose Compiler: Babel, SWC, etc.

Once the setup is complete, create-app-setup will create a project directory and install the necessary dependencies based on your selections.

CLI Commands

create-app-setup <project-name>

Starts the setup for a new project. It will prompt you for options and then generate the project files.

Example:

create-app-setup my-nextjs-app

This command will create a my-nextjs-app directory and start the setup process.

npm link

If you are working on the development version of create-app-setup, you can link it to your local npm setup for testing.

npm run link-cli

npm run build

Build the project (TypeScript compilation, etc.).

npm run build

Development

If you want to contribute or develop the tool locally, follow these steps:

  1. Clone the repository:

    git clone https://github.com/Akshaythakur766/create-app-setup.git
  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build
  4. Link the project for local development:

    npm run link-cli
  5. Run the tool locally:

    npx create-app-setup my-local-project

License

MIT License. See LICENSE for details.