DEV Community

ke jia
ke jia

Posted on

Stop Wasting Time on Project Setup — Automate It in 30 Seconds

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 ...
Enter fullscreen mode Exit fullscreen mode

New Way (30 sec)

npx scaffoldx-cli init my-project
cd my-project && npm install && npm run dev
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

Stop copy-pasting configs. Automate it.

Ko-fi

Top comments (0)