Every new project: copy package.json, remove things, add things, fix configs, realize it's deprecated.
Old Way (15-30 min)
mkdir my-project && cd my-project && npm init -y
# ... 20 more steps ...
New Way (30 sec)
npx scaffoldx-cli init my-project
cd my-project && npm install && npm run dev
Production-ready: TypeScript, ESLint, Prettier, Jest, GitHub Actions CI, Docker — all configured.
| Feature | Manual | scaffoldx |
|---|---|---|
| TypeScript | 5 min | Auto |
| ESLint | 3 min | Auto |
| Jest | 5 min | Auto |
| CI/CD | 10 min | Auto |
| Docker | 5 min | Auto |
~35 minutes saved per project.
scaffoldx init --template react-ts
scaffoldx init --template node-api
scaffoldx init --template cli-tool
Stop copy-pasting configs. Automate it.
☕ Ko-fi
Top comments (0)