# yojik

> Simple logging tool

Latest version **0.0.2** (published 2020-06-25) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install yojik
pnpm add yojik
yarn add yojik
bun add yojik
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2020-06-25 |
| First published | 2020-06-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dmitry |
| Maintainers | cojam |

## Links

- npm: https://www.npmjs.com/package/yojik
- Repository: https://github.com/e965/yojik
- Homepage: https://github.com/e965/yojik#readme
- Issues: https://github.com/e965/yojik/issues
- npm.io page: https://npm.io/package/yojik

## Recent versions

- 0.0.2 (latest) — 2020-06-25
- 0.0.1 — 2020-06-16

## README

# yojik

Simple logging tool. By default, all messages are not shown in the production build (this is determined by the environment of Node).

## How?

`npm i yojik`

### ...and?

```js
import log from 'yojik';

log('test'); // -> console.log('test')

log('test', 'info'); // -> console.info('test')

log('test', 'info', true); // -> console.info('test'), but this message will be shown in the production build.
```

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