# js-iu7-logger

> logger for iu7

Latest version **0.0.4** (published 2019-10-02) · ISC license · 0 weekly downloads

## Install

```sh
npm install js-iu7-logger
pnpm add js-iu7-logger
yarn add js-iu7-logger
bun add js-iu7-logger
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2019-10-02 |
| First published | 2019-10-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | @nikitarub |
| Maintainers | nikita.rub |

## Links

- npm: https://www.npmjs.com/package/js-iu7-logger
- Repository: https://github.com/nikitarub/js-iu7-logger
- Homepage: https://github.com/nikitarub/js-iu7-logger#readme
- Issues: https://github.com/nikitarub/js-iu7-logger/issues
- npm.io page: https://npm.io/package/js-iu7-logger

## Dependencies (1)

- [colors](https://npm.io/package/colors.md) ^1.4.0

## Recent versions

- 0.0.4 (latest) — 2019-10-02
- 0.0.3 — 2019-10-01
- 0.0.2 — 2019-10-01
- 0.0.1 — 2019-10-01

## README

# Colorfull logger for iu7.corp

## setup
```js
const L = require('js-iu7-logger');
L.setup(
    {
        name: "hello service",
        version: "0.0.1",
        host: "localhost" // default, optional
    }
);
```

## Usage

### Modes and aliases
* debug   – d
* info    – i
* warning – w
* error   – e
* fatal   – f

```js
// logg() with mode names
L.logg("hello", "info") ;

// but PLEASE USE alias
L.d("hello");
L.e("bye");
```

---
_Source: https://npm.io/package/js-iu7-logger · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
