1.0.3 • Published 3 years ago
kyoko-npm v1.0.3
Installation
npm i kyoko-npm
Example
const Kyoko = require('kyoko-npm');
(async () => {
Kyoko('quotes')
.then(res => {
console.log(res);
})
.catch(err => {
console.log(err);
});
})();
Result
{
quote: 'When I become Fuhrer President, all female personnel in the military ... will have to wear mini-skirts.',
anime: 'Fullmetal Alchemist',
id: 3833,
name: 'Roy Mustang'
}