Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivanmarban/node-twitter-streamer
A real-time twitter streaming webapp using Node.js and Socket.io
https://github.com/ivanmarban/node-twitter-streamer
nodejs socket-io twitter webapp
Last synced: 10 days ago
JSON representation
A real-time twitter streaming webapp using Node.js and Socket.io
- Host: GitHub
- URL: https://github.com/ivanmarban/node-twitter-streamer
- Owner: ivanmarban
- Created: 2015-11-20T15:52:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T19:59:25.000Z (about 2 years ago)
- Last Synced: 2024-11-09T22:40:47.035Z (2 months ago)
- Topics: nodejs, socket-io, twitter, webapp
- Language: JavaScript
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-twitter-streamer
A real-time twitter streaming webapp using Node.js and Socket.io## Prerequisites
- node.js
- npm
- bower
- git## Installation
Clone this repository and install node and bower dependencies
```sh
$ git clone https://github.com/ivanmarban/node-twitter-streamer.git
$ cd node-twitter-streamer
$ npm install
$ bower install
```
Modify config/config.js with your Twitter application keys```javascript
module.exports = {
twitter : {
consumer_key: 'TWITTER_CONSUMER_KEY',
consumer_secret: 'TWITTER_CONSUMER_SECRET',
access_token: 'TWITTER_ACCESS_TOKEN_KEY',
access_token_secret: 'TWITTER_ACCESS_TOKEN_SECRET'
},
server : {
port: 8080
}
}
```Start the app and launch it on http://localhost:8080
```sh
$ node app.js
```