Lugares is a place finding tool that queries the top cities in the US for places that match a certain keyword. It currently supports the Google Places API as a data source.
Fork of Express & ES6 REST API Boilerplate: https://github.com/developit/express-es6-rest-api.git
- ES6 support via babel
- REST resources as middleware via resource-router-middleware
- CORS support via cors
- Body Parsing via body-parser
Tip: If you are using Mongoose, you can automatically expose your Models as REST resources using restful-mongoose.
# clone it
git clone git@github.com:developit/express-es6-rest-api.git
cd express-es6-rest-api
# Make it your own
rm -rf .git && git init && npm init
# Install dependencies
npm install
# Start development live-reload server
PORT=8080 npm run dev
# Start production server:
PORT=8080 npm start
MIT