0.0.1 • Published 11 years ago

fours v0.0.1

Weekly downloads
5
License
-
Repository
github
Last release
11 years ago

Fours

Minimalist streaming API client for Fouresquare.

Heavily ripping off inspired by https://github.com/diy/diy-client written by Andrew Sliwinski.

Installation

npm install fours

Basic Use

var fours = require('fours')(
        'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // client_id
        'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'  // client_secret shhhh
    );

var request = fours({
    method: 'GET',
    uri:    '/venues/search?near=San%20Francisco,CA'
}).pipe(process.stdout);

request.on('error', function (err) {
    // Oh noes! 
});