1.12.0 • Published 8 years ago
osm-comments-api v1.12.0
osm-comments-api
Expose a RESTful API for OSM Notes and Changeset Comments.
Setup
Get some data into your database, see https://github.com/mapbox/osm-comments-parser
Run
npm installDefine an env var called
OSM_COMMENTS_POSTGRES_URLegexport OSM_COMMENTS_POSTGRES_URL='postgres://localhost/osm-comments'Run server with
node run-server.jsVisit for eg.
http://localhost:8888/api/v1/notesin your browser to see some JSON
Use as module
You can also import and use this in your node project as a module. A simple example:
var api = require('osm-comments-api'); api.listen(8888);
Test
Set an environment variabled called
TEST_PG_USERwith your postgres username- Run
npm test