strava-api
v0.1.2
Published
This module provides a wrapper around the Strava API V3 - http://strava.github.io/api/
Downloads
25
Readme
Strava-API
A small library for accessing the Strava API. Contributions welcome!
Installation
npm install strava-api --save
Usage
// USEAGE
var Strava = require('strava-api');
var strava = new Strava({
accessToken: 'access_token_xxxxxxxx'
});
strava.get('activities/151673988', function(err, res) {
// resp.end(JSON.stringify(res));
});Tests
grunt test
Release History
- 0.1.2 Include node_modules
- 0.1.1 Copy changes in Readme
- 0.1.0 Initial release
