# echolog

> A tiny wrapper around console.log that returns the values passed to it

Latest version **0.0.1** (published 2019-04-30) · MIT license · 0 weekly downloads

## Install

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

## 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.1 |
| Published | 2019-04-30 |
| First published | 2019-04-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Eric Adamski |
| Maintainers | ericadamski |

## Links

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

## Recent versions

- 0.0.1 (latest) — 2019-04-30

## README

# echolog

A tiny wrapper around console.log that returns the values passed to it

## Installation

```
> yarn add echolog
```

## Usage

```JavaScript
const log = require('echolog');

log(Math.abs(-10));
// Outputs: "10" on the terminal
// returns 10

log("hello", "👏");
// Outputs: "hello 👏" on the terminal
// returns ["hello", "👏"]
```

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