terminador
v1.0.5
Published
A simple terminal framework. - Estable
Downloads
6
Readme
Install
$ npm install terminador
Usage
const terminal = require('terminador');
terminal.send("Hello World", { color: "blue" }); // send a message to the terminal
terminal.clear(); // cleans the terminal.
terminal.ascii("Hello World"); // Send a Ascii Text
terminal.createError("Hello World"); // Create a new Error();
terminal.timestamp("en"); // send the exact time to the terminal
async function wtname() {
let response = await input("What's Your Name?");
console.log("Welcome "+response);
};
wtname(); // Do a input in terminal