Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/component/json
JSON parser / stringifier
https://github.com/component/json
Last synced: 13 days ago
JSON representation
JSON parser / stringifier
- Host: GitHub
- URL: https://github.com/component/json
- Owner: component
- Created: 2012-09-25T01:59:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-09T22:21:58.000Z (about 11 years ago)
- Last Synced: 2024-05-08T17:10:45.867Z (8 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 4
- Watchers: 5
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
Awesome Lists containing this project
README
# json
JSON parser / stringifier.
## Installation
$ component install component/json
## Example
```js
var json = require('json');
json.parse('{"foo":"bar"}');
// => { foo: 'bar' }
```## Fallback
If you're working with browsers that do not provide a native `JSON`,
then you should install [json-fallback](https://github.com/component/json-fallback)
and this module will export that instead.# License
MIT