- Star and download the repository
- run
npm install
to install the needed dependencies - Create a file named
config.js
- this file will store the configuration details for the Twitter API. The structure should be the following:
module.exports = {
consumer_key: '',
consumer_secret: '',
access_token_key: '',
access_token_secret: ''
}
- Visit the Twitter API and fill out the form. When done, click on the Keys and Access Tokens tab to view your consumer key/secret and access token key/secret. Copy these keys/secrets into your
config.js
file. - In
app.js
you can edit theparams
variable to determine what to search for:
var params = {
q: 'SEARCH_QUERY_HERE', //search query
count: 10, //number of tweets to return
result_type: 'recent', //shows recent tweets
lang: 'en' //language English
}
- Now we're ready! Open up the command prompt and type
node app.js
to run the application.