Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bjarneo/twitterstream
Twitter stream based on Node.js and React.js. Just a React.js test.
https://github.com/bjarneo/twitterstream
Last synced: 3 days ago
JSON representation
Twitter stream based on Node.js and React.js. Just a React.js test.
- Host: GitHub
- URL: https://github.com/bjarneo/twitterstream
- Owner: bjarneo
- License: mit
- Created: 2014-12-12T13:14:04.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-23T17:52:52.000Z (5 months ago)
- Last Synced: 2024-06-23T18:57:06.925Z (5 months ago)
- Language: JavaScript
- Size: 49.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TwitterStream
=============Twitter stream based on Node.js and React.js. Just a React.js test.
Feel free to test the app here: http://bjarneo.codes:3000/
## Installation
You need to define some auth credentials for twitter to get started. These can either be defined as environment variables (see `config.js`) or in a JSON-file (`config.env.json`). You can get the auth credentials from Twitter: https://apps.twitter.com/.
You also need to build the javascript client bundle by running `npm run build`
### config.env.json
```json
{
"auth": {
"consumer_key": "your consumer key",
"consumer_secret": "your consumer secret",
"token": "your token",
"token_secret": "your token secret"
},"keywords": [
"node.js",
"javascript",
"python"
],"history": {
"maxItems": 500
}
}
```### Usage:
```bash
npm install
npm run build
npm start
```