No description
  • JavaScript 100%
Find a file
2015-10-19 13:56:14 -06:00
lib Initial commit. 2015-08-19 14:38:18 -06:00
.gitignore Initial commit. 2015-08-19 14:38:18 -06:00
index.js Initial commit. 2015-08-19 14:38:18 -06:00
package.json Initial commit. 2015-08-19 14:38:18 -06:00
README.md Fix JSON namespace in documentation 2015-10-19 12:48:46 -07:00

A tiny Express-powered Node.js client for handling Twitter OAuth requests.

Clone, then install modules:

npm install

You'll need to create lib/secret.json that contains your credentials for interacting with Twitter. It should take this format:

{
  "twitter": {
    "consumer_key": "",
    "consumer_secret": "",
    "callbackURL": ""
  }
}

Run the server by executing index.js:

node index

Note: This is just the server-side implementation; you'll need a front-end to actually sign in with Twitter.