jeocoder
v0.0.2
Published
jeocoder ========
Downloads
4
Readme
jeocoder
jeocoder is a geocoder, mapping a 5 digit zip code to a (city,state) tuple. it is self-contained and does not depend on any external services. the geocoder module name was already taken :|
Why not just use Google? It's against their TOS. :-1:
Setup
git clone [email protected]:jmonster/node-jeocoder.git
cd node-jeocoder && npm install
node app
Usage
GET /zips/:zipcode
Parameters
:zipcode
a valid 5 digit US zip code
Example
GET /zips/15213
{
"state": "PA",
"city": "PITTSBURGH"
}