create-ex-ts
v1.0.0
Published
Create Express TypeScript backend server
Downloads
9
Maintainers
Readme
create-ex-ts
A CLI tool to quickly scaffold a minimal Express TypeScript backend server.
Features
- Express with TypeScript configuration
- Simple project structure
- Development mode with hot reload using nodemon
Usage
# Using npm
npm create ex-ts
# Using npx
npx create-ex-tsFollow the prompts to configure your project:
- Project folder name
- Package name
Project Structure
my-express-app/
├── src/
│ └── index.ts
├── .gitignore
├── package.json
└── tsconfig.jsonScripts
npm run dev- Start development server with hot reload using nodemonnpm run build- Build for productionnpm start- Run production server
License
MIT
