https://github.com/psychollama/json-parser
A hand-written JSON parser because reasons
https://github.com/psychollama/json-parser
json parser
Last synced: 2 months ago
JSON representation
A hand-written JSON parser because reasons
- Host: GitHub
- URL: https://github.com/psychollama/json-parser
- Owner: PsychoLlama
- Created: 2019-11-03T04:38:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T05:02:23.000Z (about 6 years ago)
- Last Synced: 2025-10-25T12:30:46.824Z (8 months ago)
- Topics: json, parser
- Language: JavaScript
- Size: 154 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# json-parser
A hand-rolled AST parser for JSON. Because... reasons?
## Project Status
:checkered_flag: Done
I wrote this for fun, and it's finished. It isn't a serious project.
## Building Locally
```sh
$ git clone https://github.com/PsychoLlama/json-parser.git
$ cd json-parser
$ yarn
# Prints the generated AST of package.json to stdout
$ ./dist/cli.js package.json
```