fancylog.js

1.0.0 • Public • Published

fancylog - make your console.log(fancy) 🦄

Demo:

Click here for demo

 

Install:

With NPM 📦:

npm install fancylog

With CDN 🌐:

<script src="https://cdn.jsdelivr.net/npm/fancylogjs@1.0.0"></script>

Locally 📁:

<script src="path/to/fancylogjs.js"></script>

 

API:

fancylog(, )

info:

To divide the string parts for styling, simply declare them with <></> tags. To set the id of the tag, write #{id} within the first tag.

To add images, simply write <img src="src-to-image" />. You can also add id's to images, simply add a #{id} anywhere within the img-tag

info:

The object sets the styling of the declared tags within the string. Use CSS in JS to declare properties and values.

Example:

fancylog('<#id1>Hello, i'm blue dabedeedabeda!</> I have no styling, <#id2>but i am underlined!</> <img src="/myimage.png" #image/>',
    {
        id1: {
            color: 'blue',
            fontWeight: 'bold',
            fontSize: '2rem'
        },
        id2: { textDecoration: 'underline' },
        image: {
            width: '300px',
            height: '200px'
        }
    });

 

Not supported:
  • Nested tags

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i fancylog.js

      Weekly Downloads

      1

      Version

      1.0.0

      License

      MIT

      Unpacked Size

      6.7 kB

      Total Files

      4

      Last publish

      Collaborators

      • mathiaswp