@ushasahu/us-kick is a simple CLI tool that instantly bootstraps a clean backend setup using:
- Express (preconfigured)
.prettierrc.gitignore- Auto-generated
server.js
Perfect for quickly starting new Node.js backend projects.
npm install @ushasahu/us-kick
mycmd
npm startYour backend setup comes with the following packages already installed:
| Package | Description |
|---|---|
| express | Backend web framework (preconfigured in server.js) |
| cors | Cross-origin resource sharing middleware |
| dotenv | Loads .env variables automatically |
| bcrypt | Password hashing (optional use) |
| jsonwebtoken | JWT authentication support |
| zod | Schema validation library |
| prettier | Code formatter with auto-generated config |
| nodemon | Auto-restart server during development |
Running mycmd will generate:
- .prettierrc — formatting rules
- .gitignore — common Node ignores
- server.js — Express server with CORS + dotenv
Sample output:
✅ .prettierrc created!
✅ .gitignore created!
☑️ server.js created!
🚀 Backend starter kit is ready! 😉 all the best from us-kick-npm-package
npm startYour backend will run at:
http://localhost:5000
Happy coding! 🚀