https://github.com/nriothrreion/json
A wheel of json compiler
https://github.com/nriothrreion/json
compiler javascript json typescript wheel
Last synced: 3 months ago
JSON representation
A wheel of json compiler
- Host: GitHub
- URL: https://github.com/nriothrreion/json
- Owner: NriotHrreion
- License: mit
- Created: 2024-03-09T16:27:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T08:53:46.000Z (over 2 years ago)
- Last Synced: 2025-09-03T20:53:15.362Z (10 months ago)
- Topics: compiler, javascript, json, typescript, wheel
- Language: TypeScript
- Homepage:
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `JSON`
By NriotHrreion
> A wheel of json compiler
## Usage
```js
JSON.parse(`
{
"abc": 123,
"test": "Hello",
"ok": true,
"props": null
}
`); // { abc: 123, test: 'Hello', ok: true, props: null }
```
## Development
```bash
# Clone repo
git clone https://github.com/NriotHrreion/json
# Install dependencies
npm i
# Run dev environment
npm run dev
# Run tests
npm run test
```
## LICENSE
[MIT](./LICENSE)