farfetch

0.9.0 • Public • Published

Farfetch

Build Status

Pompous, functional, and fluent interface for the Fetch API, inspired by SuperAgent.

Install

$ npm install farfetch

Usage

import farfetch from "farfetch";

farfetch
  .get("https://api.github.com/users/reu")
  .then(res => res.json())
  .then(console.log);

Plugins

As SuperAgent, Farfetch can be extended via plugins:

import farfetch, { prefix, responseLogger } from "farfetch";

farfetch
  .use(prefix("https://api.github.com"))
  .use(responseLogger())
  .get("/users/reu")
  .then(res => res.json())
  .then(console.log);

Available plugins

Delay

Delays a request for time milliseconds (aka poor man's throttle).

import farfetch, { delay } from "farfetch";

// Delays the request for 5 seconds
farfetch
  .use(delay(5000))
  .get("http://example.org")
  .end();

Prefix

Adds a prefix to the URL. This is quite handy for creating REST API clients.

import farfetch, { prefix } from "farfetch";

// This will issue a GET request to http://example.org/api/v1/test
farfetch
  .use(prefix("http://example.org/api/v1"))
  .get("/test")
  .end();

Note that as Farfetch never mutates the requests, we can freely reuse partial applied requests.

import farfetch, { prefix } from "farfetch";

// A "partial applied" request to the Github API
const github = farfetch
  .use(prefix("https://api.github.com"))
  .set("Authorization", "token 123mytoken");

// Issue two different requests to the Github API
const user = github.get("/users/reu").end();
const repo = github.get("/repos/reu/farfetch").end();

Request logger

A logger that logs the method and the url right before the request is made.

import farfetch, { requestLogger } from "farfetch";

// This will log "GET http://example.org"
farfetch
  .use(requestLogger())
  .get("http://example.org")
  .end();

// You can also change the logger
import winston from "winston";

farfetch
  .use(requestLogger(winston))
  .get("http://example.org")
  .end();

Response logger

A logger that logs the method, url, status code and response time of a request.

import farfetch, { responseLogger } from "farfetch";

// This will log "GET http://example.org 200 12ms"
farfetch
  .use(requestLogger())
  .get("http://example.org")
  .end();

// You can also change the logger
import winston from "winston";

farfetch
  .use(responseLogger(winston))
  .get("http://example.org")
  .end();

Developing plugins

A plugin is just a function that receives a request and returns a new one:

import farfetch from "farfetch";

const contentType = contentType => req =>
  req.method == "POST" || req.method == "PUT" ?
    req.set("Content-Type", contentType) :
    req;

const serializeJSON = req =>
  req.headers["Content-Type"] == "application/json" ?
    { ...req, body: JSON.stringify(req.body) } :
    req;

farfetch
  .use(contentType("application/json"))
  .use(serializeJSON)
  .post("http://example.org/users")
  .send({ actress: "Sasha" })
  .end();

If a plugin needs to change how a request will be made, it can redefines the execute function. For instance, this is how the delay plugin works:

// First, let's define a function who provides a promise that resolves after some time
const wait = time => new Promise(resolve => setTimeout(resolve, time));

// Plugins receives the original `execute` function as the second argument
export const delay = (time = 1000) => (req, execute) => ({
  // Add all the properties of the original request
  ...req,

  // A new `execute` function that awaits some time before calling the original one
  execute: req => wait(time).then(() => execute(req))
});

Package Sidebar

Install

npm i farfetch

Weekly Downloads

77

Version

0.9.0

License

MIT

Unpacked Size

10.4 kB

Total Files

5

Last publish

Collaborators

  • reu