https://github.com/hussein-saad/jsonparser
A lightweight JSON parsing
https://github.com/hussein-saad/jsonparser
Last synced: 5 months ago
JSON representation
A lightweight JSON parsing
- Host: GitHub
- URL: https://github.com/hussein-saad/jsonparser
- Owner: hussein-saad
- Created: 2024-02-24T11:17:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-24T11:32:21.000Z (over 1 year ago)
- Last Synced: 2025-01-10T18:46:04.753Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# JSONParser
A lightweight JSON parsing library for Node.js.
## Features
- Tokenizes JSON input into a sequence of tokens.
- Parses the token sequence into an Abstract Syntax Tree (AST).
- Evaluates the AST to produce the corresponding JavaScript object.## Usage
```bash
node src/index.js filename
```put your files in tests directory
## Acknowledgements
This project was created as part of a coding challenge from [Coding Challenges](https://codingchallenges.fyi/). Special thanks to them for providing the challenge that inspired this project.