k2s
v0.0.5
Published
Keep2share API client. Supports NodeJS and the browser.
Downloads
8
Readme
k2s
Keep2share API client. Supports NodeJS and the browser.
Full documentation coming soon
Installation
npm install k2s
Usage
const { Keep2Share } = require('k2s')
const username = 'myUsername'
const password = 'myPassword'
const k2s = new Keep2Share(username, password)
k2s
.init()
.then(() => {
// Access token saved internally for subsequent requests.
})
.catch((error) => {
console.error(error)
})