Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 446 Bytes

File metadata and controls

31 lines (23 loc) · 446 Bytes

Blackadder

A flexible, modular REST client built for ease-of-use and resilience

Installation

npm install --save blackadder

Features

Usage

const client = require('blackadder').createClient();

client
   .get(url)
   .qs('rights', rights)
   .asResponse()
   .then((res) => {
     handleResponse(res);
   });
});