⚡ Express + TypeScript backend
bla bla -> Ever needed to spin up an Express backend with TypeScript but didn't want to spend time on configuration? create-ex-ts is here to help you get started in seconds, not minutes!
- Zero-config Express + TypeScript setup
- Clean, minimal project structure
- Dev environment with hot reloading via nodemon
- Focus on coding, not configuration!
Get started with just a single command:
# Using npm
npm create ex-ts
# Using npx
npx create-ex-tsWill ask to configure your project:
- Project folder name
- Package name
my-express-app/
├── src/
│ └── index.ts
├── .gitignore
├── package.json
└── tsconfig.json
npm run dev- Start development server with hot reload using nodemonnpm run build- Build for productionnpm start- Run production server
Things that can be added (PRs welcome):
- Complex backend options (routes, controller, database setup)
- Fix issues (there will be issues here somewhere, need to find and fix them)
MIT