1.0.3 • Published 7 years ago

lwt v1.0.3

Weekly downloads
5
License
ISC
Repository
github
Last release
7 years ago

light-weight twitter

lwt is a light-weight twitter api library written in es2015 for node verisons >= 4.0.0. rather than bring in an entire http library like request, it instead just uses the oauth-sign portion of request and a uuid generator library, node-uuid to make calls to twitter's api.

install

npm install lwt

examples

'use strict';
let params = {
  accessToken: 'ACCESS_TOKEN',
  accessSecret: 'ACCESS_SECRET',
  consumerKey: 'CONSUMER_KEY',
  consumerSecret: 'CONSUMER_SECRET'
}

let t = new T(params)
t.get('followers/list', {}, function(err, data) {
  // print the first page of followers for the current oauthed user
  console.log(data.users.map((d) => `${d.name}: ${d.screen_name}` ))
})

license

ISC

author

Shuan Wang (shuanwang@gmail.com)

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

8 years ago

1.0.0

8 years ago