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

setupease

v1.0.18

Published

πŸš€ A modern, interactive CLI tool that instantly sets up complete project environments with React, Next.js, Express, MongoDB, and more. Choose your tech stack, specify versions, and get a perfectly structured project ready for development in seconds.

Downloads

6

Readme

SetupEase

πŸ“š Overview

SetupEase is a powerful, lightweight CLI tool designed to streamline the initial setup process for modern web development projects. It automates the repetitive configuration tasks that developers face when starting new projects, saving valuable time and ensuring consistent project structures.

With SetupEase, you can quickly scaffold projects with popular tech stacks including React, Next.js, Express, and MongoDB, all with customizable version selection.

πŸš€ Features

  • Interactive Setup: User-friendly CLI interface with step-by-step prompts
  • Multiple Technology Support:
    • Frontend: React (with Vite), Next.js, Vue.js
    • Backend: Express, NestJS
    • Database: MongoDB, MySQL
    • CSS Frameworks: Tailwind CSS (v3/v4), Bootstrap
  • Version Control: Select specific versions for each technology
  • Project Structure: Creates optimized directory structures for different project types
  • Customization: Extensive configuration options for tailoring to your needs
  • Consistent Setup: Ensures all projects follow best practices and standard structures

πŸ“¦ Installation

# Global installation (recommended)
npm install -g setupease

# Or use directly with npx
npx setupease

πŸ› οΈ Usage

# Create a new project in the current directory
setupease .

# Create a new project in a specific directory
setupease my-project

# Show version
setupease -v

🧩 Interactive Setup

SetupEase provides an interactive CLI that guides you through the project setup with the following options:

  1. Project Information

    • Project name
    • Project structure (monorepo, separate directories)
  2. Technology Stack Selection

    • Frontend framework (React, Next.js, Vue)
    • Backend framework (Express, NestJS)
    • Database (MongoDB, MySQL)
    • CSS frameworks (Tailwind CSS, Bootstrap)
  3. Version Selection

    • Choose specific versions for each technology from a curated list
    • Use latest versions or select legacy versions as needed
  4. Custom Package Options

    • Add additional libraries with specific versions

πŸ“‹ Supported Technologies & Versions

Frontend

  • React: latest, 18.2.0, 18.0.0, 17.0.2
  • Next.js: latest, 14.1.0, 14.0.4, 14.0.3, 13.5.6
  • Vue: latest, 3.3.4, 3.2.47, 2.7.14
  • Vite: latest, 5.0.0, 4.5.0, 4.4.0

Backend

  • Express: latest, 4.18.2, 4.18.1, 4.17.1
  • NestJS: latest, 10.0.0, 9.4.3, 8.4.7

Database

  • MongoDB/Mongoose: latest, 8.0.0, 7.6.3, 6.12.3, 5.13.20
  • MySQL: latest, 2.18.1, 2.18.0, 2.17.1

CSS Frameworks

  • Tailwind CSS: 4.0.3, 3.3.6, 3.2.7, 2.2.19
  • Bootstrap: latest, 5.3.2, 5.2.3, 4.6.2

Development Tools

  • TypeScript: latest, 5.2.2, 5.0.4, 4.9.5
  • ESLint: latest, 8.54.0, 8.40.0, 7.32.0
  • Prettier: latest, 3.1.0, 3.0.3, 2.8.8

πŸ“ Created Project Structure

SetupEase creates a well-organized project structure:

project-name/
β”œβ”€β”€ frontend/          # Frontend code (React, Next.js)
β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”œβ”€β”€ components/
β”‚   β”‚   β”œβ”€β”€ pages/
β”‚   β”‚   β”œβ”€β”€ layouts/
β”‚   β”‚   β”œβ”€β”€ hooks/
β”‚   β”‚   β”œβ”€β”€ utils/
β”‚   β”‚   └── assets/
β”‚   └── package.json
β”‚
β”œβ”€β”€ backend/           # Backend code (Express, NestJS)
β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”œβ”€β”€ controllers/
β”‚   β”‚   β”œβ”€β”€ models/
β”‚   β”‚   β”œβ”€β”€ routes/
β”‚   β”‚   └── middleware/
β”‚   └── package.json
β”‚
β”œβ”€β”€ shared/            # Shared code between frontend and backend
β”‚   β”œβ”€β”€ types/
β”‚   └── utils/
β”‚
β”œβ”€β”€ .env.example
└── README.md

πŸ’» Development

To contribute to SetupEase:

# Clone the repository
git clone https://github.com/itz-mohanmadhav-18/setupease.git

# Install dependencies
cd setupease
npm install

# Run locally
node index.mjs

πŸ“„ License

SetupEase is MIT licensed.

πŸ‘€ Author

Created by Mohan Madhav Singhal

πŸ™ Acknowledgements

  • Thanks to all contributors who have helped make SetupEase better
  • Inspired by modern development workflows and tooling needs