Skip to content

OmnijarStudio/tipu

Repository files navigation

Tipu

npm macOS Linux License: MIT Twitter: @omnijarstudio

Tipu is a lightweight JavaScript logging API for modern browsers.

Installation

With Yarn:

$ yarn add tipu

With NPM:

$ npm install tipu

Builds

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';

Examples

Initializing the logging API

import * as log from 'tipu';

log.warn('Looking good!');

License

MIT, see LICENSE for details.