Back to articles
I Built a CLI That Scaffolds 30+ Fullstack Projects From Natural Language

I Built a CLI That Scaffolds 30+ Fullstack Projects From Natural Language

via Dev.to JavaScriptMd Mohosin Ali Shah

Ever typed something like this and wished it just worked? npx starter-structure-cli my-app react vite ts tailwind express prisma mysql Well, now it does. I built starter-structure-cli an open source Node.js CLI that generates production-ready starter projects from stack tokens you type in plain English. The Problem Every time I started a new project, I'd spend hours: Setting up folder structure Wiring up the frontend to the backend Configuring ORMs, auth, styling Copy-pasting boilerplate from old projects I wanted one command that just gives me a working project with my exact stack. What It Does npx starter-structure-cli my-app That's it. You get an interactive prompt that walks you through picking your stack. Or skip the prompts entirely: npx starter-structure-cli my-app react vite ts tailwind express prisma mysql It ships with 30+ templates across 6 categories: Category Example Single App react-vite-ts-tailwind Frontend-only react-admin-dashboard Backend-only express-prisma-mysql-jwt

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
2 views

Related Articles