Skip to content

Quickstart

  • Node.js and pnpm
  • Local ports 4070 and 4071

From the SuperApiManager repository root:

Terminal window
pnpm install
pnpm db:generate
pnpm db:push
pnpm dev

Open:

  • Web: http://localhost:4071
  • API: http://localhost:4070
  1. Create a project and collection.
  2. Add a request and enter the target URL.
  3. Select the HTTP method required by the target service.
  4. Configure headers, query parameters, or a body.
  5. Send the request and inspect status, headers, and body.
  6. Save a stable response as an example for future integration work.

Keep the application running, then execute:

Terminal window
pnpm test:smoke

The smoke test verifies backend forwarding, non-GET/POST target methods, history persistence, and gzip_hex request decoding.

Before production deployment, continue with Configuration and security, especially private-network access and encryption keys.