A minimalist boilerplate generator for quickly setting up a new Express application — with your choice of language and an optional template engine.
- Supports JavaScript and TypeScript
- Optional support for EJS or Handlebars
- Automatically installs dependencies using your preferred package manager (
npm,pnpm, oryarn) - Generates a clean, minimal project structure
Run the following command and follow the interactive prompts:
npx @kba-tools/create-express-appYou’ll be asked to choose:
- Language: JavaScript or TypeScript
- Template engine: None, EJS or Handlebars
- Package manager: npm, pnpm, or yarn
Once confirmed, the app scaffold will be generated and dependencies installed automatically.
cd my-express-app
npm startmy-express-app/
├── src/
│ ├── routes/
│ ├── views/
│ └── app.js
├── package.json
└── README.md
Skip repetitive Express setup steps and start coding immediately. Create Express App provides a clean, ready-to-use foundation for any Express project.
Distributed under the MIT License.
See LICENSE for details.