API Handler
This library will help you with requests to REST APIs. It uses Fetch API which isn't supported by node and some older browsers. Remember to include polyfill if need it.
Basic request
Install npm library:
npm install api-handler --save
First initiate Api class and then you can send HTTP requests. As first parameter use base url.
import { Api } from 'api-handler';
const api = new Api('https://api.blockcypher.com');
api.get('v1/btc/main').then((response) => {
console.log(response);
});
In default configuration, response is same as in Fetch API. That why you can define your own processors that will parse responses or use default one provided by this library.
import { Api, defaultResponseProcessor } from 'api-handler';
const api = new Api('https://api.blockcypher.com', [
defaultResponseProcessor,
]);
api.get('v1/btc/main').then((response) => {
console.log(response.code);
console.log(response.data);
console.log(response.source);
});
Here is how to create your own response processors and use them in the chain:
const api = new Api('//some.api.com', [
defaultResponseProcessor,
onlyDataProcessor,
]);
function onlyDataProcessor(response) {
return Promise.resolve(response.data);
}
api.get('endpoint').then((response) => {
console.log(response);
});
Methods
There are default methods for GET, POST, PUT and DELETE. But you can send any HTTP method using request.
api.get('v1/btc/main');
api.get('v1/btc/main', { a: 'b' });
api.post('method', { a: 'b' });
api.put('method', { a: 'b' });
api.delete('method');
api.request('endpoint', 'PUT', {
body: 'Simple string request',
});
Data encoding
By default, data for POST and PUT are encoded as JSON. You can also encode them as FormData. This can be used for images or files uploading.
import { Api, defaultResponseProcessor, FORM_DATA_FORMAT } from 'api-handler';
const api = new Api('//some.api.com');
api.post('file-upload', {
file: fileObject,
}, FORM_DATA_FORMAT);
Authentization
You can authorize to API by using default headers or set them after.
const api = new Api('//some.api.com', [], {
Authorization: 'Bearer XYZ',
'Content-Type': 'application/json',
});
api.addDefaultHeader('Authorization', 'Bearer ABC');
api.removeDefaultHeader('Authorization');
You can also set custom headers for every request:
api.request('endpoint', 'GET', {}, {
'Authorization': 'Bearer XYZ',
})
Node
To use it as node library, just import Fetch polyfill:
require('isomorphic-fetch');
const { Api, defaultResponseProcessor } = require('api-handler');
const api = new Api('https://api.blockcypher.com', [ defaultResponseProcessor ]);
api.get('v1/btc/main').then((response) => {
console.log(response.data);
});