Scrapes internet for data to be displayed in the app
npm install- Create a secrets folder with secrets.json file
mkdir secrets && touch secrets/secrets.json - Add the following secrets to the created json
{
"facebook": {
"accessToken": ""
},
"twitter": {
"consumerKey": "",
"consumerSecret": "",
"user": {
"accessToken": "",
"accessTokenSecret": ""
}
},
"IBM": {
"NLUUsername": "",
"NLUPassword": ""
}
}npm start
npm test
npm run coverage
Manage jobs with a nice GUI
npm run agendash
Generate docs
npm run docs
Example client implementation in client.js
- How to not save same stuff twice on the database?
- Get events by geocode
- Get london traffic data
- Any other APIs?
- How to handle facebook comments pagination?