A wrapper to work with Monkeytype API
npm install --save monkeytype-wrapper
import MonkeyWrapper from 'monkeytype-wrapper'
const monkey = new MonkeyWrapper('YOUR_APE_KEY')
// Using methods
monkey.users.profile('John Doe').then((res) => {
console.log(res.name) // John Doe
}).catch((e) => {
console.error(e)
})
More detailed examples will be documented soon
Distributed under the MIT License. See LICENSE for more information.