https://github.com/wildandhya/json-parser
https://github.com/wildandhya/json-parser
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wildandhya/json-parser
- Owner: wildandhya
- Created: 2024-08-19T16:03:56.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T16:11:39.000Z (almost 2 years ago)
- Last Synced: 2025-01-28T22:38:50.352Z (over 1 year ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)