Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1 KB

README.md

File metadata and controls

61 lines (43 loc) · 1 KB

Log

npm version

A console with label for Browser.

Live Demo

Install

npm install @letea/log

Usage

import Log from "@letea/log";

const log = new Log("Log 1");
log.print("This is a print message");

// Or this way
/* 
const log = new Log({
  label: "Log 1"
});
*/

const log2 = new Log({
  label: "Log 2",
  labelBackgroundColor: "#c00"
});
log2.warn("This is a warn message.");

const log3 = new Log({
  label: "Log 3",
  labelBackgroundColor: "#0a0"
});
log3.error("This is a error message.");

Options

{
  label: string,
  labelBackgroundColor: string, // color format
  messageColor: string          // color format
}

Result

Light Mode

Dark Mode