← Back to Browse
Testing

StressForge

Declarative load testing with realistic traffic patterns, ramp-up scenarios, and detailed reporting.

★★★★★ 4.6 201 reviews
6.8k installs
v1.4.0 MIT

Install

npx skilldock install stress-forge

About

StressForge generates realistic load test scenarios from your API specs or traffic logs. It simulates user journeys with think time, geographic distribution, and session management. Produces HTML reports with p50/p95/p99 latencies, error rates, and throughput graphs.

Usage Example

// stress-test.config.js
module.exports = {
  target: "https://api.example.com",
  scenarios: [{
    name: "Browse & Purchase",
    weight: 70,
    flow: ["GET /products", "GET /products/:id", "POST /cart"]
  }],
  phases: [
    { duration: "30s", arrivalRate: 5 },
    { duration: "2m", arrivalRate: 50 }
  ]
};