# ks-stringify

> Stream version of JSON.stringify

Latest version **1.0.0** (published 2016-02-02) · ISC license · 0 weekly downloads

## Install

```sh
npm install ks-stringify
pnpm add ks-stringify
yarn add ks-stringify
bun add ks-stringify
```

## 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.0 |
| Published | 2016-02-02 |
| First published | 2016-02-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | kmsheng |
| Maintainers | kmsheng |
| Keywords | Stringify, nested, JSON, through, streams. |

## Links

- npm: https://www.npmjs.com/package/ks-stringify
- npm.io page: https://npm.io/package/ks-stringify

## Dependencies (2)

- [lodash](https://npm.io/package/lodash.md) ^4.1.0
- [readable-stream](https://npm.io/package/readable-stream.md) ^2.0.5

## 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

- 1.0.0 (latest) — 2016-02-02

## README

# ks-stringify
Stream version of JSON.stringify

Example
```
var stringify = require('ks-stringify');
var fs = require('fs');
var writeStream = fs.createWriteStream('data.json');

var obj = {hello: 'world'};

stringify(obj).pipe(writeStream)
  .on('finish', function() {
    console.log('data.json has been written !');
  });
```

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