30 seconds to coding
One command, a few prompts, done. No boilerplate copying, no config wrestling, no wasted morning.
One command, a few prompts, done. No boilerplate copying, no config wrestling, no wasted morning.
Every template ships with .env, package.json, entry files, error handling, and correct dependencies.
Express, NestJS, Next.js 15, React + Vite, MongoDB, PostgreSQL — mix backend, frontend, and admin freely.
Each template generates a complete folder structure with boilerplate you'd actually write yourself.
src/ ├── config/db.js ├── controllers/ ├── middlewares/ ├── models/ ├── routes/ ├── services/ └── validators/
src/ ├── config/db.js ├── controllers/ ├── middlewares/ ├── routes/ ├── services/ └── utils/ prisma/schema.prisma
src/ ├── common/ │ ├── filters/ │ ├── guards/ │ └── pipes/ ├── config/ ├── modules/ ├── main.ts └── app.module.ts
app/ ├── (auth)/ ├── (dashboard)/ ├── layout.tsx └── page.tsx components/ ├── ui/ └── layout/ hooks/ lib/ services/
src/ ├── assets/ ├── components/ ├── hooks/ ├── pages/ ├── services/ ├── store/ ├── App.tsx └── main.tsx public/
app/ ├── (auth)/login/ ├── (admin)/dashboard/ components/ ├── tables/ ├── forms/ ├── charts/ └── ui/ hooks/ lib/ services/
npx @novaedgedigitallabs/skeltr
Project name, output directory, which parts, stack per part, and whether to generate a README.
cd your-app && npm install && npm run dev — everything is wired up and ready.
Install globally or run once with npx.