create-backend-ts
v1.0.6
Published
CLI to scaffold a TypeScript Express backend
Maintainers
Readme
🚀 What is this?
create-backend-ts is a CLI tool that scaffolds a complete Node.js backend project with:
- ✅ TypeScript + Express preconfigured
- ✅ Environment setup with
.env - ✅ Auto-generated
.gitignore,README.md, andtsconfig.json - ✅ Git repository initialized
- ✅ Full directory structure (
src/routes,controllers, etc.) - ✅ Ready to run with
npm run dev
Perfect for hackathons, prototypes, or starting production-ready APIs.
🧪 Try it now
No global install needed!
npx create-backend-ts my-api
cd my-api
npm install
npm run dev
Folder structure
my-api/
├── src/
│ ├── index.ts
│ ├── routes/
│ └── controllers/
├── .env
├── .gitignore
├── tsconfig.json
├── package.json
├── README.md
└── dist/