
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Framework-agnostic CLI scaffolding tool for backend applications
Installation • Usage • Features • Roadmap • Contributing
Stacky is a CLI tool that scaffolds production-ready backend projects with your choice of framework, runtime, database, and authentication. It uses a plugin-based architecture following the Strategy Pattern for extreme modularity.
Why Stacky?
npm install -g stacky-cli
Or use directly with npx:
npx stacky-cli my-app
Simply run stacky and follow the prompts:
stacky
Skip the prompts with flags:
stacky my-app -f hono -r bun -d drizzle -a better-auth -i
| Flag | Description | Values |
|---|---|---|
-f, --framework | Web framework | hono, express, fastify |
-r, --runtime | JavaScript runtime | node, bun |
-d, --database | Database ORM | prisma, drizzle |
-a, --auth | Authentication | better-auth, passport |
-i, --install | Auto-install dependencies | - |
--no-docker | Skip Docker setup | - |
--no-cors | Skip CORS middleware | - |
--no-logging | Skip request logging | - |
--no-health | Skip health endpoint | - |
Hono + Bun + Drizzle + Better Auth:
stacky my-api -f hono -r bun -d drizzle -a better-auth -i
Express + Node (minimal):
stacky my-api -f express -r node --no-docker
Fastify + Prisma:
stacky my-api -f fastify -r node -d prisma -i
| Framework | Description |
|---|---|
| Hono | Ultra-fast, lightweight, Web Standards |
| Express | Classic, mature ecosystem |
| Fastify | High performance, schema validation |
| Runtime | Description |
|---|---|
| Node.js | Stable, widely supported |
| Bun | Fast, modern, batteries included |
| ORM | Description |
|---|---|
| Drizzle | Lightweight, SQL-like, type-safe |
| Prisma | Full-featured, migrations, studio |
| Provider | Description |
|---|---|
| Better Auth | Modern, session-based, easy setup |
| Passport | Classic, 500+ strategies |
my-app/
├── src/
│ ├── index.ts # App entry point
│ ├── db/ # Database (Drizzle)
│ │ ├── index.ts
│ │ └── schema.ts
│ └── lib/
│ └── auth.ts # Auth config
├── prisma/ # Database (Prisma)
│ └── schema.prisma
├── .env
├── .env.example
├── .gitignore
├── .dockerignore
├── Dockerfile
├── drizzle.config.ts
├── eslint.config.js
├── package.json
├── tsconfig.json
└── README.md
.env and .env.example files/health endpointContributions are welcome! Here's how:
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)Plugins follow the Strategy Pattern. See existing plugins in:
src/plugins/frameworks/ - Framework pluginssrc/plugins/databases/ - Database pluginssrc/plugins/auth/ - Auth pluginsDistributed under the MIT License. See LICENSE for more information.
FAQs
Framework-agnostic CLI scaffolding tool for backend applications
We found that stacky-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.