README
twitter-cl
A useful tool for interacting with the Twitter from command line instead of the normal Twitter UI. Built from scratch with Node.js, Twitter NPM and oclif
🚨 This project is still in development! Feel free to make PRs and Issues for mistakes and/or suggestions! 🚨
⚡ Quick Start
$ npm i -g twitter-cl
$ tcl config
$ tcl tweet "Hello World!"
⛏️ Usage
$ npm install -g twitter-cl
$ tcl COMMAND
running command...
$ tcl (-v|--version|version)
twitter-cl/1.0.1 win32-x64 node-v12.1.0
$ tcl --help [COMMAND]
USAGE
$ tcl COMMAND
...
🔥 Commands
tcl config
Setup your account credentials.
USAGE
$ tcl config
OPTIONS
-h, --help show CLI help
DESCRIPTION
NOTE: This requires API keys from https://developer.twitter.com!
See code: src\commands\config.ts
tcl feed
Get the latest tweets in your timeline
USAGE
$ tcl feed
OPTIONS
-c, --count=count [default: 30] Limit tweets to the specified number
-h, --help show CLI help
See code: src\commands\feed.ts
tcl help [COMMAND]
display help for tcl
USAGE
$ tcl help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
tcl stream
Create a live feed of tweets you specify
USAGE
$ tcl stream
OPTIONS
-h, --help show CLI help
-u, --user=user Only show tweets by the given handles (or comma-separated handles, no @ symbol)
-w, --word=word Only show tweets containing the given word (or comma-separated words)
See code: src\commands\stream.ts
tcl tweet TEXT
describe the command here
USAGE
$ tcl tweet TEXT
ARGUMENTS
TEXT That sweet content that you want to put out there
OPTIONS
-h, --help show CLI help
See code: src\commands\tweet.ts