display #stayAtHome tweets
This repo contains the complete code for what was covered in the FTL Hackathon Intro to Big Data: COVID-19 and its Global Effects Twitter API Workshop
- Clone this repo
- Create a new app in your Twitter Developer Account
- If you do not have a Twitter Developer Account, please ping one of the mentors who will add you to our Twitter FTL Hackathons Team Developer Account. You'll just need to provide us with your twitter handle
- Create a
twitterConfig.js
file at the same level asserver.js
with the following contents (from that app you created in #2):
module.exports = {
consumer_key: 'your_consumer_key',
consumer_secret: 'your_consumer_secret',
access_token: 'your_access_token',
access_token_secret: 'your_access_token_secret',
}
- Install dependencies and run the server!
npm install
node server.js
- Navigate to
localhost:3000
- In the input box, type in a hashtag to view the latest tweets, e.g.
#stayAtHome
- Click the
Analyze
button - Your page should now display all of the popular and latest tweets for that hashtag
- In the input box, type in a hashtag to view the latest tweets, e.g.
- Use this repo as a starting point to take this track to the next level!
- Consider ways you can iterate upon it in order to visualize tweets
- Inspiration: Check out the USC Melady Lab's COVID-19 Tweet Analysis