A zero-config CLI tool to scaffold a modern TypeScript + Express backend in seconds.
Create a fully configured Node.js server with one command.
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.
No global install needed!
npx create-backend-ts my-api
cd my-api
npm install
npm run dev
my-api/
├── src/
│ ├── index.ts
│ ├── routes/
│ └── controllers/
├── .env
├── .gitignore
├── tsconfig.json
├── package.json
├── README.md
└── dist/