An open API service indexing awesome lists of open source software.

https://github.com/tpiros/twitter-geotrend


https://github.com/tpiros/twitter-geotrend

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

#Twitter - GeoTrend

A simple app to gather the latest trends from a given city.

##Setup instructions

git clone https://github.com/tamaspiros/twitter-geotrend.git to desired location and then:

npm install && bower install

Edit app.js file and modify the following part of the code with your own IP address/hostname:


server.listen(3000, "YOUR-IP-HERE", function(){
console.log("Express server up and running.");
});

Add a config.js file to the project's root folder and add your consumer key, consumer secret and access token details:


module.exports = {
consumer_key: 'xxx',
consumer_secret: 'xxx',
access_token: 'xxx',
access_token_secret: 'xxx'
};

Execute npm start and then navigate to your IP/hostname on port 3000 with a browser.

More info: tamas.io/twitter-geotrending-app-using-node-js-and-angularjs/