0.0.1 • Published 4 years ago

lit-log v0.0.1

Weekly downloads
7
License
Apache-2.0
Repository
github
Last release
4 years ago

Lit Log

Simple way to log events to the DOM

npm Published on webcomponents.org

Install

yarn add lit-log

How to Use

AttributeTypeDefaultDescription
hiddenbooleanfalseWhether the element should be displayed
openbooleanfalseWhether the log should be shown by default
entryanyundefinedAdds 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)