An open API service indexing awesome lists of open source software.

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

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.