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-stackforge-cli

v1.3.0

Published

Modern fullstack project scaffolding CLI

Downloads

816

Readme

🚀 StackForge

npm version npm downloads License

Demo

StackForge Demo

A modern fullstack project scaffolding CLI built with Node.js.

StackForge automates the setup of frontend, backend, and fullstack applications by generating production-ready project structures with optional features like authentication, database support, Tailwind CSS, Prisma ORM, and more.

Designed to improve developer workflow and eliminate repetitive project setup tasks.


✨ Features

Frontend Support

  • Vanilla HTML/CSS/JS
  • React
  • Next.js

Backend Support

  • Express.js
  • Environment configuration
  • Modular architecture

Fullstack Support

Generate:

frontend/
backend/

with independent setups.


⚡ Optional Features

  • JWT Authentication
  • Prisma ORM
  • Swagger/OpenAPI documentation setup for backend and fullstack projects
  • MySQL Support
  • PostgreSQL Support
  • Tailwind CSS
  • Git initialization
  • ESLint setup
  • Prettier setup
  • Automatic dependency installation

🧠 Project Architecture

StackForge uses a modular feature-based architecture:

src/
├── config/
├── features/
├── templates/
├── utils/

This makes the project scalable and easy to extend with future integrations.


📦 Installation

Install from npm

npm install -g create-stackforge-cli

Verify installation:

stackforge --help

Install from Source

Clone the repository:

git clone https://github.com/MkhalFadel/stackforge.git

Enter the project directory:

cd stackforge

Install dependencies:

npm install

Link the CLI globally:

npm link

🚀 Usage

Run:

stackforge my-app

You will then be prompted to select:

  • project type
  • frontend framework
  • database
  • authentication
  • Tailwind CSS
  • Prisma ORM
  • dependency installation

📁 Example Generated Structure

Fullstack Project

my-app/
├── frontend/
│   ├── src/
│   ├── public/
│   └── package.json
│
└── backend/
    ├── controllers/
    ├── routes/
    ├── middleware/
    ├── prisma/
    ├── .env
    └── package.json

🔐 Authentication

When enabled, StackForge automatically generates:

POST /api/auth/register
POST /api/auth/login
GET  /api/auth/profile

using:

  • JWT
  • bcrypt
  • Express middleware

🎨 Tailwind CSS

Tailwind CSS can be automatically configured for:

  • React
  • Next.js

StackForge installs and configures Tailwind automatically during project generation.


🗄️ Database Support

Supported databases:

  • PostgreSQL
  • MySQL

Optional Prisma ORM support is also available.


🛠️ Technologies Used

  • Node.js
  • Express.js
  • Inquirer
  • Chalk
  • Ora
  • Execa
  • fs-extra

🎯 Goals

StackForge was built to:

  • speed up project initialization
  • improve developer experience
  • reduce repetitive setup work
  • provide scalable starter architectures

🚧 Future Plans

Planned features include:

  • Docker support
  • Swagger integration
  • Testing setup
  • ESLint/Prettier automation
  • Socket.IO integration
  • Next.js standalone fullstack mode
  • Authentication improvements
  • Additional frontend frameworks

🤝 Contributing

Contributions, issues, and feature requests are welcome.

Feel free to fork the project and submit pull requests.


📄 License

This project is licensed under the MIT License. See the LICENSE file for details.


👨‍💻 Author

Built by Mkhal Fadel. GitHub: https://github.com/MkhalFadel