A CLI tool to quickly set up an Express.js + TypeScript project structure.
- Automatically creates a complete folder structure.
- Pre-configures
package.json
andtsconfig.json
. - Installs all necessary dependencies for an Express + TypeScript project.
- Install it globally
npm i -g typescript_express_cli
2.For create structure
create-express-ts <your_project_name>
<your_project_name>/
├── src/
│ ├── routes/
│ ├── controllers/
│ ├── models/
│ ├── configs/
│ ├── services/
│ ├── assets/
│ ├── data/
├── .env
├── .gitignore
├── tsconfig.json
├── package.json
├── README.md