Quick and simple node (express + coffeescript) app with Twitter oauth set up, nice for quick prototypes.
$ git clone [email protected]:neilcarpenter/twitter-oauth-app.git
$ cd twitter-oauth-app
$ npm install
- Go here and set up a Twitter application, setting website URL as
http://127.0.0.1:3000/
- Add generated Twitter app credentials to
app/creds.coffee
(after theelse
) $ coffee app/server.coffee
- Go to http://127.0.0.1:3000/ and enjoy
App code structure thanks to -> https://github.com/focusaurus/express_code_structure*