0.1.5 • Published 7 years ago

kentico-deliver-js v0.1.5

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

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