Skip to content

josephmallari/twitter-geotrend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 62.2%
  • HTML 37.8%