Skip to content

mothepro/lit-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lit Log

Simple way to log events to the DOM

npm Published on webcomponents.org

Install

yarn add lit-log

How to Use

Attribute Type Default Description
hidden boolean false Whether the element should be displayed
open boolean false Whether the log should be shown by default
entry any undefined Adds a new entry
<!-- 
  Import the element.

  The `module` query parameter expands "bare" imports to full unpkg.com urls.
  This means use of an import map isn't needed.
  @see https://unpkg.com#query-params
-->
<script type="module" src="//unpkg.com/lit-log/dist/esm/index.js?module"></script>

<lit-log
  open
  entry="first"
>
  <span slot="summary">Cool Logger</span>
</lit-log>

TODO Add better log formats (Ideally it should be like console.log) Only log in dev