Tipu is a lightweight JavaScript logging API for modern browsers.
With Yarn:
$ yarn add tipu
With NPM:
$ npm install tipu
Tipu has four build versions: ES, CommonJS, AMD, and UMD.
ES, CommonJS:
import log from 'tipu';
AMD:
import * as log from 'tipu/index.amd';
UMD:
import * as log from 'tipu/index.umd';
import * as log from 'tipu';
log.warn('Looking good!');
MIT, see LICENSE for details.