Skip to content

davewalk/node-philly-hoods

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
});

About

A Node wrapper for Philly Hoods - a neighborhood API for Philadelphia

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published