
Security News
AI Agent Submits PR to Matplotlib, Publishes Angry Blog Post After Rejection
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.
@octokit/fixtures-server
Advanced tools
Fixtures server for browser & language agnostic octokit testing
The Octokit Fixtures Server is proxies requests to the mocked routes provided by @octokit/fixtures.
Load a fixture. All folder names at @octokit/fixtures/scenarios/api.github.com
are valid values for scenario.
curl -XPOST -H'Content-Type: application/json' http://localhost:3000/fixtures -d '{"scenario": "get-repository"}'
The response looks something like this
{
"id": "fixturesid123",
"url": "http://localhost:3000/api.github.com/fixturesid123/api.github.com/fixturesid123"
}
Send a request to the returned url as if it was https://api.github.com.
curl -H'Authorization: token 0000000000000000000000000000000000000001' -H'Accept: application/vnd.github.v3+json' http://localhost:3000/api.github.com/fixturesid123/repos/octokit-fixture-org/hello-world
After that request the fixture is "consumed". That allows for different responses for the same requests based on order.
If you want to load custom fixtures, you'll have to use @octokit/fixtures-server as standalone server
or as as express middleware.
Download binary for your os from the latest release.
Alternatively, you can also install @octokit/fixtures-server as a global npm package, if you prefer that:
npm install --global @octokit/fixtures-server
By default the server runs at http://localhost:3000
octokit-fixtures-server
| CLI option | ENV variable | default | description |
|---|---|---|---|
| --port | PORT | 3000 | Server port number |
| --fixtures-url | FIXTURES_URL | 'http://localhost:<port>' | URL to handle fixture requests (This helps with continuous deployments) |
| --log-level | LOG_LEVEL | 'info' | One of 'debug', 'info', 'warn', 'error', 'silent' |
| --ttl | TTL | 60000 | Expiration time for loaded fixtures in ms |
| --fixtures | FIXTURES | 'node_modules/@octokit/fixtures/scenarios/**/normalized-fixture.json' | glob path to load JSON fixture files recorded with nock. Make sure to wrap the value with quotes, e.g. --fixtures='./scenarios/*.json' |
const express = require("express");
const app = express();
const fixturesServer = require("@octokit/fixtures-server");
app.use(
fixturesServer({
fixtures: {
"my-scenario": require("./scenarios/my-scenario.json"),
},
}),
);
app.listen(3000);
| Option | Default | Description |
|---|---|---|
fixturesUrl | 'http://localhost:<port>' | URL to handle fixture requests (This helps with continuous deployments) |
logLevel | 'info' | One of 'debug', 'info', 'warn', 'error', 'silent' |
ttl | 60000 | Expiration time (time to live) for loaded fixtures in ms |
fixtures | fixtures from @octokit/fixtures/scenarios/api.github.com | Object with keys being the scenario names and values being the fixtures arrays |
FAQs
Fixtures server for browser & language agnositic octokit testing
The npm package @octokit/fixtures-server receives a total of 90 weekly downloads. As such, @octokit/fixtures-server popularity was classified as not popular.
We found that @octokit/fixtures-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.

Security News
HashiCorp disclosed a high-severity RCE in next-mdx-remote affecting versions 4.3.0 to 5.x when compiling untrusted MDX on the server.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.