Little berrytube chat client I whipped up in node this afternoon with ncurses.
- View berrytube chat
- View berrytube userlist
- Log in as a guest or regular user
- Send messages
- React to resize events (SIGWINCH)
- Display notifications for video changes, polls
- Clone this repo (
git clone https://github.com/berrytube/node-curses-btclient
) - Execute
npm install
in the directory to install dependencies
- Run
node index.js
in the root directory of the repository
/nick <name> [<pass>]
: Sends asetNick
packet to berrytube to log you in. If<pass>
is not provided, you will be logged in as a guest./hide nicklist
: Hides the username list/show nicklist
: Shows the username list/hide titlebar
: Hides the title bar/show titlebar
: Shows the title bar/repaint
: Forces ncurses to redraw the whole screen/clear
: Clears the message buffer/quit
: Cleanly quits the client
Code by cyzon. Feel free to contribute suggestions and/or patches. Cheers.