Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 491 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 491 Bytes

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)
  })

Contributions

License