blacktide-client
v1.0.1
Published
Blacktide framework HTTP/REST client
Downloads
3
Readme
Blacktide Client
Helper lib to work with Blacktide API/Microservices via REST/HTTP
Installation
$ npm i -S blacktide-client
Usage
const BlacktideClient = require( 'blacktide-client' );
const link = 'https://jsonplaceholder.typicode.com/posts';
const client = new BlacktideClient( {
link
} );
client
.create( {
title: 'blah'
}, ( err, res ) => {
} );
Tests
$ npm test
License
See LICENSE.txt