# console-stream

> A writable stream that writes to the console

Latest version **0.1.1** (published 2013-01-29) · 0 weekly downloads

## Install

```sh
npm install console-stream
pnpm add console-stream
yarn add console-stream
bun add console-stream
```

## 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.1.1 |
| Published | 2013-01-29 |
| First published | 2013-01-27 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Raynos |
| Maintainers | raynos, substack |

## Links

- npm: https://www.npmjs.com/package/console-stream
- Repository: https://github.com/Raynos/console-stream
- Issues: https://github.com/Raynos/console-stream/issues
- npm.io page: https://npm.io/package/console-stream

## Recent versions

- 0.1.1 (latest) — 2013-01-29
- 0.1.0 — 2013-01-27

## README

# console-stream

[![build status][1]][2]

[![browser support][3]][4]

A writable stream that writes to the console

Refactored out of [tape][5]

## Example

```js
var ConsoleStream = require("console-stream")

var stream = ConsoleStream()

stream.write("one")
stream.write("two\n")
// console.log('onetwo')
stream.write("three\nfour")
// console.log('three')
stream.end("five")
// console.log('fourfive')
```

## Installation

`npm install console-stream`

## Contributors

 - Raynos

## MIT Licenced


  [1]: https://secure.travis-ci.org/Raynos/console-stream.png
  [2]: http://travis-ci.org/Raynos/console-stream
  [3]: http://ci.testling.com/Raynos/console-stream.png
  [4]: http://ci.testling.com/Raynos/console-stream
  [5]: https://github.com/substack/tape/blob/028e858f85c6916a730dca183c00469ebb869729/lib/default_stream.js

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