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

https://github.com/wildandhya/json-parser


https://github.com/wildandhya/json-parser

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# JSON Parser

A simple JSON parser written in Go. This project implements a lexer and parser for parsing JSON data. It reads a JSON file, parses it, and prints the JSON content as a string.

## Installation

To install the JSON parser, you need to have Go installed on your machine. Then, you can use the following command to clone the repository:

1. **Clone the repsository**

```sh
git clone https://github.com/wildandhya/json-parser
```
2. **Build the project**

## Usage
Once you have the executable built, you can use it to parse JSON files. Here’s an example of how to use the JSON parser from the command line:

1. **Run the Program**

Run the executable and pass a JSON file path as an argument:
```sh
./jp file path/to/yourfile.json
```

## References
[Coding Challenge](https://codingchallenges.fyi/challenges/challenge-json-parser)