0.0.3 • Published 4 years ago

@zqr33/lvlup.js v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

lvlup.js

API wrapper for LVLUP

##Example 1

const {default: Lvlup} = require('lvlup.js')

const lvlup = new Lvlup("API KEY", {
    sandbox: false
})

(async () => {
    const services = await lvlup.services.list()
    console.log(services)
})

##Example 2

import Lvlup from '@zqr33/lvlup.js'

const lvlup = new Lvlup("API KEY", {
    sandbox: false
})

(async () => {
    const services = await lvlup.services.list()
    console.log(services)
})