README
A simple logging library.
Install
npm i -S live-log
Usage
Singleton
import {log} from 'live-log'
log('foo')
Module namespaced
// modules/foo/index.js
const logger = require('live-log')('foo')
logger.log('foo')
A simple logging library.
<script type="module">
import liveLog from 'https://cdn.skypack.dev/live-log';
</script>
A simple logging library.
npm i -S live-log
Singleton
import {log} from 'live-log'
log('foo')
Module namespaced
// modules/foo/index.js
const logger = require('live-log')('foo')
logger.log('foo')