Skip to content

distrill/brently

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

send highcharts data here and browse at http://brently.bhindustries.ca.
example with request-promise.

const rp = require('request-promise');

const options = {
  method: 'POST',
  uri: 'http://api.brently.bhindustries.ca/plots',
  body: {
    name: 'look at my sweet sweet data',
    config: {
      // any valid highcharts config
    },
  },
  json: true,
};

rp(options)
  .then(() => console.log('done!'))
  .catch(console.log);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published