Google map service: https://github.com/googlemaps/google-maps-services-js
Facebook gaph api service:
Setup Node server: http://www.bogotobogo.com/MEAN-Stack/Building-REST-API-with-Node-Mongodb.php
Type in terminal -> cd project path -> nodemon index.js
Create project:
$ mkdir GYMsServer
$ cd GYMsServer
$ npm init
Install Express:
$ npm install express --save
Install body-parser:
$ npm install --save body-parser
Install nodemon
$ sudo npm install -g nodemon
Install mongoose, node-restful
$ npm install --save mongoose node-restful
Install google map api service: https://github.com/googlemaps/google-maps-services-js
$ npm install @google/maps --save
Install facebook gaph api
$ npm install fbgraph --save
Install request
$ npm install --save request
Install request promise
$ npm install --save request-promise
Install node fb sdk
$ npm install fb --save
Install async
$ npm install --save async