yo-api
v1.1.2
Published
freakin' simple node wrapper for yo api
Readme
node-yo-api
a freakin' simple node wrapper for yo api
usage
install via npm:
npm i yo-apiin your code:
Yo = require "yo-api"
yo = new Yo "your-yo-api-token"
yo.yo_all (err, res, body) ->
# do whatever...
yo.yo_all_link (err, res, body) ->
# do whatever with a link...
yo.yo "WORLDCUP", (err, res, body) ->
# do something else...
yo.yo_link "WORLDCUP", "http://example.com", (err, res, body) ->
# do something else with a link...
yo.yo_location "WORLDCUP", 40.752726, -73.977240, (err, res, body) ->
# do something else with a location...
yo.subscribers_count (err, res, body) ->
# do something with count...get involved
- fork it ( https://github.com/sakatam/node-yo-api/fork )
- create your feature branch (
git checkout -b my-new-feature) - commit your changes (
git commit -am 'Add some feature') - push to the branch (
git push origin my-new-feature) - create new pull request
