Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tariknz/nodejs-twitter-angularjs
This application uses NodeJS for Twitter streaming/searching API with AngularJS on client side. It also uses twitter bootstrap for styling
https://github.com/tariknz/nodejs-twitter-angularjs
Last synced: about 2 months ago
JSON representation
This application uses NodeJS for Twitter streaming/searching API with AngularJS on client side. It also uses twitter bootstrap for styling
- Host: GitHub
- URL: https://github.com/tariknz/nodejs-twitter-angularjs
- Owner: tariknz
- License: gpl-2.0
- Created: 2013-10-02T06:15:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-16T05:30:32.000Z (over 10 years ago)
- Last Synced: 2024-04-13T03:17:01.229Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 415 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Setup
=====1. Install NodeJS (if you don't have it)
nodejs.org
2. Install the required modules in npm
npm install ntwitter
npm install socket.io
3. Add your Twitter APP keys in twitter-stream.js here:
```javascript
var twit = new twitter({
consumer_key: '[ENTER CUSUMER KEY]',
consumer_secret: '[ENTER CUSUMER SECRET KEY]',
access_token_key: '[ENTER ACCESS TOKEN KEY]',
access_token_secret: '[ENTER ACCESS TOKEN SECRET KEY]'
});
```Please see link below if you don't know how to get these: https://dev.twitter.com/docs/auth/tokens-devtwittercom
Run
===If you are using windows, just run the batch file. Else:
### Windows
node twitter-stream.js
### Linux
nodejs twitter-stream.js
The default URL should be http://localhost:3000/
Screenshot
==========![Alt text](http://i.imgur.com/NDxCLlU.png)