1.0.0 • Published 11 years ago

philly-hoods v1.0.0

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

philly hoods (Node wrapper)

A wrapper for the phillyhoods.net API.

build status

Installation

npm install philly-hoods

Usage

var hoods = require('philly-hoods');  

hoods.findByCoords(39.972176, -75.158587, function (err, res) {
  if (err) console.log(err);

  return console.log(res);
});

hoods.findByName('bella', function (err, res) {
  if (err) console.log(err);

  return console.log(res);
});