# json-stringify-stream

> streaming json stringifier

Latest version **0.0.1** (published 2013-06-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install json-stringify-stream
pnpm add json-stringify-stream
yarn add json-stringify-stream
bun add json-stringify-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.0.1 |
| Published | 2013-06-21 |
| First published | 2013-06-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Wraithan |
| Maintainers | wraithan |
| Keywords | json, stringify, readable, stream |

## Links

- npm: https://www.npmjs.com/package/json-stringify-stream
- Repository: https://github.com/wraithan/json-stringify-stream
- Issues: https://github.com/wraithan/json-stringify-stream/issues
- npm.io page: https://npm.io/package/json-stringify-stream

## Dependencies (1)

- [through](https://npm.io/package/through.md) ~2.3.4

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 0.0.1 (latest) — 2013-06-21

## README

json-stringify-stream
=====================

Calls JSON.stringify() on data written to it and emits the result.

```javascript
var stringify = require('json-stringify-stream')
  , st = stringify()

st.pipe(process.stdout)
st.write([1,2,3])

/* output:
'[1,2,3]'
*/
```

events
------

`stringify()` instances are readable/writable streams.

Their `data` events are simply the stringified form of what was written to it.

license
-------

MIT

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