express-cli-template
v1.0.3
Published
A basic express app template
Readme
express-cli-template
A simple CLI to scaffold Express.js applications with JavaScript or TypeScript.
Features
Create a ready-to-use Express project in JavaScript or TypeScript
Pre-configured folder structure:
Environment configuration with
.envBasic error handling setup
Dev scripts with nodemon (JS) or ts-node-dev (TS)
Installation
You can run it directly with npx (no global install needed):
npx express-cli-templateYou will be prompted to enter:
Project name
Language: JavaScript or TypeScript
After the project is created:
cd my-app
npm install