https://github.com/tpiros/twitter-geotrend
https://github.com/tpiros/twitter-geotrend
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tpiros/twitter-geotrend
- Owner: tpiros
- Created: 2013-12-11T22:24:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-01T21:31:24.000Z (about 10 years ago)
- Last Synced: 2025-03-12T12:51:39.379Z (3 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 9
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/