https://github.com/coderaiser/jonny
Work with json with no exceptions
https://github.com/coderaiser/jonny
javascript json json-api nodejs stringify
Last synced: 11 days 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T16:49:08.000Z (over 5 years ago)
- Last Synced: 2025-06-21T18:06:02.260Z (22 days 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
undefinedconst obj = {};
obj.a = obj;jonny.stringify(obj, 0, 4));
// returns
undefined
```## License
MIT