1.0.0 • Published 7 years ago

tweetlite-automate v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Install

npm install twitbot-tweetlite

Usage

tweetlite use --src=~/.tweetlite/node_modules/twitbot-tweetlite/ --account=johndoe --interval="5 hours" --message="$(cat welcome.txt)"

Module Usage

import TweetLite from 'tweetlite-core';
import automate from 'tweetlite-automate';

const automate = automate.use();
const TT = new TweetLite({conf});

automate.call(TT, {
	interval:'5 hours',
	message:` Hello World`;
})