# logalot

> Tiny log utility

Latest version **2.1.0** (published 2014-12-08) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2.1.0 |
| Published | 2014-12-08 |
| First published | 2014-12-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | Kevin Mårtensson |
| Maintainers | kevva |
| Keywords | imagemin, log, sqeak |

## Links

- npm: https://www.npmjs.com/package/logalot
- Repository: https://github.com/imagemin/logalot
- Issues: https://github.com/imagemin/logalot/issues
- npm.io page: https://npm.io/package/logalot

## Dependencies (2)

- [squeak](https://npm.io/package/squeak.md) ^1.0.0
- [figures](https://npm.io/package/figures.md) ^1.3.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

- 2.1.0 (latest) — 2014-12-08
- 2.0.0 — 2014-12-03

## README

# logalot [![Build Status](http://img.shields.io/travis/imagemin/logalot.svg?style=flat)](https://travis-ci.org/imagemin/logalot)

> Tiny log utility

## Install

```sh
$ npm install --save logalot
```

## Usage

```js
var log = require('logalot');

log.info('this is a message');
log.warn('this is a warning');
log.success('this is a success message');
log.error(new Error('this is a error').stack);

/*
  ℹ this is a message
  ⚠ this is a warning
  ✔ this is a success message
  ✖ Error: this is an error
    at ChildProcess.exithandler (child_process.js:648:15)
    at ChildProcess.emit (events.js:98:17)
 */
```

## License

MIT © [imagemin](https://github.com/imagemin)

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