← Back to Browse
Code Generation

APIForge

Generate production-ready REST and GraphQL APIs from a simple schema definition.

★★★★★ 4.6 198 reviews
7.2k installs
v3.1.0 Apache-2.0

Install

npx skilldock install api-forge

About

Define your data models in a clean YAML schema and APIForge generates Express/Fastify routes, validation middleware, database migrations, and OpenAPI documentation. Includes authentication scaffolding, rate limiting, and error handling out of the box.

Usage Example

# schema.yaml
models:
  User:
    fields:
      email: { type: string, unique: true }
      name: { type: string }
    endpoints: [list, get, create, update, delete]