tui-chat-components
v0.1.0
Published
TUI chat components for a tui chatbox project!
Downloads
2
Readme
tui-chat-components
Simple chat components for the tui
Install
npm i tui-chat-components
Example
const { Chat } = require('tui-chat-components');
const chat = new Chat('MyUserName');
chat.addMessage('UserA', 'first message!');
chat.addPrompt(({ user, message }) => {
// Send data to server
});
chat.addFooter(`\tESC - Command Mode\t\tDown Arrow - Insert Mode`);
chat.render();
Documentation for the Chat
is accessible here
Documentation for the Form
is accessible here