Setting up

Installing

You can install the package easily by doing 
npm i tweets.js

Basic usage

Tokens

const bird = require('tweets.js')

const bot = new bird.tweet({
consumer_key: "Your consumer key",
consumer_secret: "Your consumer secret",
access_token: "Your access token",
access_token_secret: "Your access token secret"
});

That's it, you now have a basic bot. visit the methods page for a guide on all the methods available

Last updated

Was this helpful?