# out

> Write formatted output to STDERR (other alternative channels)

Latest version **1.1.0** (published 2018-12-17) · ISC license · 0 weekly downloads

## Install

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

## 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.1.0 |
| Published | 2018-12-17 |
| First published | 2011-12-21 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 19.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Damon Oehlman |
| Maintainers | damonoehlman |
| Keywords | logging, console, stdout |

## Links

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

## 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.1.0 (latest) — 2018-12-17
- 1.0.0 — 2015-04-23
- 0.5.4 — 2013-10-28
- 0.5.1 — 2013-10-09
- 0.5.0 — 2013-07-26
- 0.4.3 — 2012-09-28
- 0.4.2 — 2012-06-27
- 0.4.1 — 2012-04-04
- 0.4.0 — 2012-03-09
- 0.2.0 — 2011-12-21

## README

# out

This is a simple node module designed to give you the following features in
one tidy convenient package:

* stderr reporting
* simple variable replacement
* colorized output


[![NPM](https://nodei.co/npm/out.png)](https://nodei.co/npm/out/)

[![stable](https://img.shields.io/badge/stability-stable-green.svg)](https://github.com/dominictarr/stability#stable) [![Build Status](https://api.travis-ci.org/DamonOehlman/out.svg?branch=master)](https://travis-ci.org/DamonOehlman/out)

## Example Usage

```js
var out = require('out');

// write a message to stderr
out('Hello');

// do a variable replacement in a message
out('Hello, my name is {0}', 'Bob');

// do some formatting of things
out('Hello, my name is !{bold}{0}', 'Bob');
```

## LICENCE

ISC License

Copyright (c) 2018, Damon Oehlman <damon.oehlman@gmail.com>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

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