api-recorder

0.0.12 • Public • Published

HTTP JSON API Recorder

Record API responses and replay them offline. Useful for UI testing setups.

Runs a proxy server that acts in two modes:

  • recording mode: stores every responses of target API to specified directory.
  • replay mode: respond to API requests using previously recorded responses.

Installation

$ npm install api-recorder -g

Configuration

{
  "port": 3000,
  "directory": "~/offline_data",
  "target": "http://my.api.local:8080",
  "fingerprint": [
    "method",
    "url",
    "query",
    "body",
    {
      "headers": [
        "user-agent",
        "accept-language",
        "host"
      ]
    }
  ]
}

port Integer

Port used by the proxy.

directory String

Directory to write to / read from API responses.

target String

Real server hosting the API to record.

fingerprint Array

List of keys from the request object to use to "fingerprint" the request. Can be specifed as an object when reading request object properties (for example headers).

Usage

CLI

Record API responses

$ api-recorder -c=/path/to/config.json

Replay API responses (offline mode)

$ api-recorder -c=/path/to/config.json --offline

Replay API responses that are already recorded, record others

$ api-recorder -c=/path/to/config.json --offline --autofix

Node API

const apiRecorder = require('api-recorder');
 
// Initialize and start HTTP service
const service = apiRecorder({
  config: '/path/to/config.json',
  directory: '/path/to/directory',
  offline: false // or true
});
 
// Some code that pulls data from the service
 
service.close(); // Close HTTP service

TODO

  • allow request fingerprinting customization
  • allow responses delaying by configuration
  • tests
  • support non-JSON APIs

Readme

Keywords

none

Package Sidebar

Install

npm i api-recorder

Weekly Downloads

0

Version

0.0.12

License

ISC

Unpacked Size

12.5 kB

Total Files

17

Last publish

Collaborators

  • flochtililoch