https://github.com/rickyes/v8-json
V8 JSON Parse/Stringify
https://github.com/rickyes/v8-json
json nodejs v8
Last synced: about 2 months ago
JSON representation
V8 JSON Parse/Stringify
- Host: GitHub
- URL: https://github.com/rickyes/v8-json
- Owner: rickyes
- License: mit
- Created: 2018-07-05T05:05:19.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-29T13:32:39.000Z (over 6 years ago)
- Last Synced: 2025-03-15T07:33:26.197Z (about 2 months ago)
- Topics: json, nodejs, v8
- Language: C++
- Size: 16.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# v8-json
V8 JSON Parse/Stringify[](https://travis-ci.org/rickyes/v8-json)
[](https://www.npmjs.com/package/v8-json)
[](https://www.npmjs.com/package/v8-json)## Install
```bash
$ npm i v8-json --save
```## Platform
- [x] OSX
- [ ] Linux
- [ ] Windows## Getting Started
```js
const v = require('v8-json');v.parse("{\"a\": 1}"); // { "a": 1}
v.stringify({b: true}); // '{"b": true}'
```
## Author
v8-json © [Ricky 泽阳](https://github.com/rickyes), Released under the MIT License.