Skip to content

letea/log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A console with label for browsers.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published