kentico-deliver-js
v0.1.5
Published
A light wrapper around the Kentico Deliver/Cloud API for parameterised queries
Downloads
2
Readme
Kentico Deliver/Cloud JavaScript API (Unofficial) WIP
Usage
npm i kentico-deliver-js --save
import KenticoCloudAPI from 'kentico-deliver-js';
const api = new KenticoCloudAPI('Project-ID');
// Get all items of content type `drinks`
let items;
api
.type('drinks')
.run()
.then(result => console.info(result, 👌))
.catch(error => console.warn(error))
API
... WIP