https://github.com/rialg/simplejsonparser
C++ library for parsing simple (non-nested) JSON encoded strings. The code in this repo. is part of the implementation of a light stream processing application to analyze system's logs (some kind of HIDS) that is currently in development.
https://github.com/rialg/simplejsonparser
cpp json jsonparser library
Last synced: 8 months ago
JSON representation
C++ library for parsing simple (non-nested) JSON encoded strings. The code in this repo. is part of the implementation of a light stream processing application to analyze system's logs (some kind of HIDS) that is currently in development.
- Host: GitHub
- URL: https://github.com/rialg/simplejsonparser
- Owner: rialg
- License: mit
- Created: 2019-06-13T00:13:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-03T03:18:33.000Z (over 6 years ago)
- Last Synced: 2025-02-16T21:41:46.050Z (12 months ago)
- Topics: cpp, json, jsonparser, library
- Language: C++
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simplejsonparser


C++ library for parsing simple (non-nested) JSON encoded strings. The code in this repo. is part of the implementation of a light stream processing application to analyze system's logs (some kind of HIDS) that is currently in development.
## Requirements
* __OS Used in development__: Ubuntu 18.04
* __Additional system information__: Linux 4.18.0-21-generic #22~18.04.1-Ubuntu SMP Thu May 16 15:07:19 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
__UNTIL FURTHER NOTICE, TRY IT WITH THE FOLLOWING COMANDS__:
## NOTE: The following commands were used in an Ubuntu shell
```
$ sudo apt-get install -y build-essential
$ make
$ make run
```
### To run the example.cc source with gdb, try the following:
```
$ make debug
```
### To run the tests, try the following:
```
$ make test
```