https://github.com/coderaiser/jonny
Work with json with no exceptions
https://github.com/coderaiser/jonny
javascript json json-api nodejs stringify
Last synced: 6 months ago
JSON representation
Work with json with no exceptions
- Host: GitHub
- URL: https://github.com/coderaiser/jonny
- Owner: coderaiser
- License: mit
- Created: 2015-03-10T14:25:22.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T16:49:08.000Z (almost 6 years ago)
- Last Synced: 2025-06-21T18:06:02.260Z (6 months ago)
- Topics: javascript, json, json-api, nodejs, stringify
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
# Jonny
Work with json without exeptions.
## Install
```
npm i jonny --save
```
## How to use?
```js
const jonny = require('jonny');
jonny.parse('hello');
// returns
undefined
const obj = {};
obj.a = obj;
jonny.stringify(obj, 0, 4));
// returns
undefined
```
## License
MIT