Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

kerihenare/burningman-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

burningman-api

Burning Man API wrapper

js-semistandard-style NPM Version

Use

var burningman = require('burningman-api')('api-key-goes-here');

burningman.arts(2017, function (error, arts) {
  if (error) {
    throw error;
  }

  console.log(arts);
});

burningman.art('art-uid', function (error, art) {
  if (error) {
    throw error;
  }

  console.log(art);
});

burningman.camps(2017, function (error, camps) {
  if (error) {
    throw error;
  }

  console.log(camps);
});

burningman.camp('camp-uid', function (error, camp) {
  if (error) {
    throw error;
  }

  console.log(camp);
});

burningman.events(2017, function (error, events) {
  if (error) {
    throw error;
  }

  console.log(events);
});

burningman.event('event-uid', function (error, event) {
  if (error) {
    throw error;
  }

  console.log(event);
});

License

MIT

About

Burning Man API wrapper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published