@matrixmind/api-forge
v1.0.0
Published
A CLI tool that instantly scaffolds development-ready API backends
Downloads
41
Readme
api-forge
api-forge is a CLI tool that instantly scaffolds development-ready API backends with clean architecture, best practices, and modern tooling baked in. It eliminates repetitive setup work and lets you start building features immediately. With support for multiple frameworks, databases, and authentication strategies.
Installation
npm install -g @matrixmind/api-forgeUsage
api-forge init <project-name>Supported Stacks
| Category | Options Supported | | ---------- | --------------------------- | | Frameworks | Express , Fastify , Hono | | Databases | PostgreSQL, MongoDB, SQLite | | Auth | JWT, API Key, None |
Generated Project Structure
projectName/
│
├── src/
| └── index.js
│ └── middleware/
│ └── auth.js ← only when JWT or API KEY
|
├── package.json
├── README.md
├── .env
└── .gitignore