ad-app
v2.0.0
Published
My custom scaffolding CLI for a Node/TypeScript/Express project
Readme
✨ ad-app spins up a modern React + Vite front-end and an Express 5 (beta) + TypeScript API in seconds.
| folder | stack | dev command |
| ------------- | ------------------------------------------------- | ---------------------- |
| client/ | Vite • React • React Router v6 | npm run dev -w client |
| server/ | Express 5 (beta) • TypeScript • Nodemon | npm start -w server |
Everything runs together using concurrently.
🚀 Install the CLI
| Install style | Command |
| ------------- | ------- |
| Global (recommended) | npm i -g ad-app |
| One-off (no globals) | npx ad-app <cmd> (works with pnpm dlx & yarn dlx too) |
⚡ Quick start — 3 commands
ad-app new my-app # or: npx ad-app new my-app
cd my-app
npm install && npm start # 1) installs everything (client+server) via preinstall
# 2) launches both apps