# json-parse-errback

> parse(input, function(error, object) { ... })

Latest version **2.0.1** (published 2016-08-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install json-parse-errback
pnpm add json-parse-errback
yarn add json-parse-errback
bun add json-parse-errback
```

## 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 | 2.0.1 |
| Published | 2016-08-24 |
| First published | 2016-01-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Kyle E. Mitchell |
| Maintainers | kemitchell |

## Links

- npm: https://www.npmjs.com/package/json-parse-errback
- Repository: https://github.com/kemitchell/json-parse-errback.js
- Homepage: https://github.com/kemitchell/json-parse-errback.js#readme
- Issues: https://github.com/kemitchell/json-parse-errback.js/issues
- npm.io page: https://npm.io/package/json-parse-errback

## Recent versions

- 2.0.1 (latest) — 2016-08-24
- 2.0.0 — 2016-02-24
- 1.0.1 — 2016-01-17
- 1.0.0 — 2016-01-17

## README

```javascript
module.exports = function (input, callback) {
  var result
  try {
    result = JSON.parse(input)
  } catch (error) {
    return callback(error)
  }
  callback(null, result)
}
```

"That's all, folks!"

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