Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 702 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 702 Bytes

Twitter oauth app

Quick and simple node (express + coffeescript) app with Twitter oauth set up, nice for quick prototypes.

Setup

  1. $ git clone [email protected]:neilcarpenter/twitter-oauth-app.git
  2. $ cd twitter-oauth-app
  3. $ npm install
  4. Go here and set up a Twitter application, setting website URL as http://127.0.0.1:3000/
  5. Add generated Twitter app credentials to app/creds.coffee (after the else)
  6. $ coffee app/server.coffee
  7. Go to http://127.0.0.1:3000/ and enjoy

App code structure thanks to -> https://github.com/focusaurus/express_code_structure*