koulis-js

1.0.2 • Public • Published

koulis-js

Replace your boring console.log with the awesome koulis.log

Installing

The easiest way to install koulis-js is through npm

npm install --save koulis-js

Usage

Import koulis-js in your project

import { koulis } from 'koulis-js';

Use koulis.log for all your logging needs.

koulis.log("Hello world!");

Get awesomeness

There is built-in support for logging objects and functions. Running this code

const answer = 42;
const me = {
    name: "fedonman",
    job: "dev",
    github: "https://github.com/fedonman"
};
const add = (a, b) => {
    return a + b
};

koulis.log("This is a number:", answer, ", this is an object:", me, "and this is a function:", add.toString());

will result to this

Author

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Package Sidebar

Install

npm i koulis-js

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

18.8 MB

Total Files

7

Last publish

Collaborators

  • fedonman