https://github.com/simonsmith/twitter-test
https://github.com/simonsmith/twitter-test
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/simonsmith/twitter-test
- Owner: simonsmith
- Created: 2016-07-04T00:39:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-04T01:20:20.000Z (almost 10 years ago)
- Last Synced: 2025-05-19T04:37:56.015Z (about 1 year ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Express app to render tweets
## Installation
* `npm install`
* `npm run build`
* `npm start`
App will be running at localhost and port 3000
## Development
In separate terminals run the following watch tasks
* `npm run watch-css`
* `npm run watch-server`
* `npm run watch-client`
## Twitter Auth
Requires a `config.js` in the root of the directory that exports Twitter Oauth
credentials:
```js
module.exports = {
consumer_key: 'aa',
consumer_secret: 'aa',
access_token_key: 'aa',
access_token_secret: 'aa',
};
```