1.0.1 • Published 6 years ago

loadlab v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

LoadLab JS

Javascript Client for the LoadLab REST API.

Setup

$ npm i loadlab

Usage

const client = new LoadLab('<LOADLAB_API_TOKEN>')

// Get jobs
client.jobs.get().then(response => {
// do stuff with the response here
})

// Get plans
client.plans.get().then(response => {
// do stuff with the response here
})

// Get sites
client.sites.get().then(response => {
// do stuff with the response here
})