Quickstart
Requirements
Section titled “Requirements”- Node.js and pnpm
- Local ports
4070and4071
Start development
Section titled “Start development”From the SuperApiManager repository root:
pnpm installpnpm db:generatepnpm db:pushpnpm devOpen:
- Web:
http://localhost:4071 - API:
http://localhost:4070
Send a first request
Section titled “Send a first request”- Create a project and collection.
- Add a request and enter the target URL.
- Select the HTTP method required by the target service.
- Configure headers, query parameters, or a body.
- Send the request and inspect status, headers, and body.
- Save a stable response as an example for future integration work.
Verify the installation
Section titled “Verify the installation”Keep the application running, then execute:
pnpm test:smokeThe 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.