https://github.com/drborges/angularjs-twitter-feed
This is the codebase used during the AngularJS meet up on the Sep 29th 2014 at Porto Alegre - Brazil
https://github.com/drborges/angularjs-twitter-feed
Last synced: 12 months ago
JSON representation
This is the codebase used during the AngularJS meet up on the Sep 29th 2014 at Porto Alegre - Brazil
- Host: GitHub
- URL: https://github.com/drborges/angularjs-twitter-feed
- Owner: drborges
- License: mit
- Created: 2014-09-27T16:18:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-30T02:12:51.000Z (over 11 years ago)
- Last Synced: 2025-06-01T11:16:30.966Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://talks.drborges.me
- Size: 1.33 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Angular Twitter Feed
This is the codebase used during the AngularJS meet up on the Sep 29th 2014 at Porto Alegre - Brazil
It implements a simple tweet feed tracker directive using node-tweet-stream.
# Directive Usage
```html
```
Adding report support:
```html
```
# Running the Sample App
1. This application uses Twitter app authentication API, so you'll need a `config.json` on the application root (side-by-side with app.js) as follows:
```javascript
{
"consumer_key": "your consuner key",
"consumer_secret": "your consumer secret key",
"token": "your token",
"token_secret": "your token secret"
}
```
**For more information on how to create a Twitter app and have access to the information above, check out [this post](http://www.dototot.com/how-to-write-a-twitter-bot-with-python-and-tweepy/)**
2. Then, fetch the dependencies and start the app:
```bash
$ bower install
$ npm install
$ gulp
```
### Running The Tests
Running the unit tests once:
`$ gulp spec`
### Activating TDD Mode
In order to have all your tests run on every code change use:
`$ gulp tdd`
### Activating The Browser Livereload
In order to have your changes immediately refreshed onto the broser run:
`$ gulp livereload`