1.0.5 • Published 5 years ago
console-x-public v1.0.5
What is this?
Shortened console commands for quick and easy use in node.js!
Installation
npm install console-x-public --save
Usage
// Import the package
const { log, warn, error, clear } = require('console-x-public');
// Logs to the console with [console.log()]
log("This is a Log message!");
// Warns to the console with [console.warn()]
warn("This is a warn message!");
// Errors to the console with [console.error()]
error("This is an error message!");
// Clears the console with [console.clear()]
clear();