philly-hoods

An API wrapper for phillyhoods.net - a neighborhoods API for Philadelphia

Usage no npm install needed!

<script type="module">
  import phillyHoods from 'https://cdn.skypack.dev/philly-hoods';
</script>

README

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