node-brocade
v2.0.1
Published
A library for making requests to the brocade.io API
Downloads
9
Readme
brocade
Module for making requests to the Brocade API
Installation
npm
npm install node-brocade --saveunpkg
<script src="https://unpkg.com/[email protected]/dist/main.min.js"></script>Usage
const brocade = require('node-brocade');
brocade.item('4335896051932').then(data => {
console.log(JSON.stringify(data));
}).catch(error => {
console.log(error.message);
});Features
Get an item by its GTIN
brocade.item('4335896051932').then(data => {
console.log(JSON.stringify(data));
}).catch(error => {
console.log(error.message);
});List the first 100 products
brocade.list().then(data => {
console.log(JSON.stringify(data));
}).catch(error => {
console.log(error.message);
});List all items of a specific page
brocade.page('20').then(data => {
console.log(JSON.stringify(data));
}).catch(error => {
console.log(error.message);
});Search for items
brocade.query('peanut butter').then(data => {
console.log(JSON.stringify(data));
}).catch(error => {
console.log(error.message);
});