# jsonify

> JSON without touching any globals

Latest version **0.0.1** (published 2022-10-12) · Public Domain license · 0 weekly downloads

## Install

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

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2022-10-12 |
| First published | 2011-08-21 |
| Weekly downloads | 0 |
| License | Public Domain |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 18.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Douglas Crockford |
| Maintainers | substack, ljharb |
| Keywords | json, browser |

## Links

- npm: https://www.npmjs.com/package/jsonify
- Repository: https://github.com/ljharb/jsonify
- Homepage: https://github.com/ljharb/jsonify#readme
- Issues: https://github.com/ljharb/jsonify/issues
- Funding: https://github.com/sponsors/ljharb
- npm.io page: https://npm.io/package/jsonify

## 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) — 2022-10-12
- 0.0.0 — 2011-08-21

## README

# jsonify <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]

[![npm badge][npm-badge-png]][package-url]

This module provides Douglas Crockford's JSON implementation without modifying any globals.

`stringify` and `parse` are merely exported without respect to whether or not a global `JSON` object exists.

[![build status](https://secure.travis-ci.org/ljharb/jsonify.png)](https://travis-ci.org/ljharb/jsonify)

# methods

``` js
var json = require('jsonify');
```

## json.parse(source, reviver)

Return a new javascript object from a parse of the `source` string.

If a `reviver` function is specified, walk the structure passing each name/value pair to `reviver.call(parent, key, value)` to transform the `value` before parsing it.

## json.stringify(value, replacer, space)

Return a string representation for `value`.

If `replacer` is specified, walk the structure passing each name/value pair to `replacer.call(parent, key, value)` to transform the `value` before stringifying it.

If `space` is a number, indent the result by that many spaces.
If `space` is a string, use `space` as the indentation.

# install

With [npm](https://npmjs.org) do:

```
npm install jsonify
```

To use this module in the browser, check out
[browserify](https://github.com/browserify/browserify).

# license

public domain

[package-url]: https://npmjs.org/package/jsonify
[npm-version-svg]: https://versionbadg.es/ljharb/jsonify.svg
[deps-svg]: https://david-dm.org/ljharb/jsonify.svg
[deps-url]: https://david-dm.org/ljharb/jsonify
[dev-deps-svg]: https://david-dm.org/ljharb/jsonify/dev-status.svg
[dev-deps-url]: https://david-dm.org/ljharb/jsonify#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/jsonify.png?downloads=true&stars=true
[license-image]: https://img.shields.io/npm/l/jsonify.svg
[license-url]: LICENSE
[downloads-image]: https://img.shields.io/npm/dm/jsonify.svg
[downloads-url]: https://npm-stat.com/charts.html?package=jsonify
[codecov-image]: https://codecov.io/gh/ljharb/jsonify/branch/main/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/ljharb/jsonify/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/jsonify
[actions-url]: https://github.com/ljharb/jsonify/actions

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