# log-easily

> Small and simple logging tool

Latest version **1.0.1** (published 2015-12-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install log-easily
pnpm add log-easily
yarn add log-easily
bun add log-easily
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2015-12-21 |
| First published | 2015-12-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Michelle Liu |
| Maintainers | anonmily |
| Keywords | log, logging, console |

## Links

- npm: https://www.npmjs.com/package/log-easily
- npm.io page: https://npm.io/package/log-easily

## Dependencies (2)

- [colors](https://npm.io/package/colors.md) ^1.1.2
- [simply-is](https://npm.io/package/simply-is.md) ^2.5.5

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads
- [child-process-debug](https://npm.io/package/child-process-debug.md) — 695 weekly downloads

## Recent versions

- 1.0.1 (latest) — 2015-12-21
- 1.0.0 — 2015-12-21

## README

Log Easily
====================
![Log Easily Dependency badge](https://david-dm.org/anonmily/log-easily.svg)

A small and simple colored logging tool.

[GITHUB:	https://github.com/anonmily/log-easily](https://github.com/anonmily/log-easily)

[NPM:		https://www.npmjs.com/package/log-easily](https://www.npmjs.com/package/log-easily)

## Installation - Node
To install as a Node package, simply install via npm:

    npm install log-easily

Then, you can require and start using the package as you wish:

	var log = require('log-easily');
	log.info('this is an informational message');	// grey
	log.warning('I'm warning you');			// yellow
	log.success('This was a success');		// green
	log.error('Something went horribly wrong');	// red

## Usage

Logging depends on two environmental variables, SHOW_DEBUG and SHOW_ERRORS

| Version | Notes                                                                                                                                                                            |
|---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Info   | Informational, grey. Visible when SHOW_DEBUG=true |
| Warning  | Warning, yellow. Visible when SHOW_DEBUG=true  |
| Success | Success, green. Visible when SHOW_DEBUG=true	|npm
| Error  | Error, red. Visible when SHOW_DEBUG=true and SHOW_ERRORS=true  |

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