deep-json
Version, currently main branch1 version
- main branchlatestSep 11, 2023
github.com/KirillFurtikov/deep-json
DeepJSON is a lightweight module for retrieving values from a JSON object based on a given path. It provides a simple and intuitive way to navigate nested JSON structures and extract specific values.
Installation
# Add this to your shard.yml
dependencies:
deep-json:
github: KirillFurtikov/deep-json
branch: mainmain is a branch, not a release, so this tracks it rather than pinning a version.
Then run:
shards installshard.yml
- Crystal
1.9.2- License
- MIT
- Author
- Kirill Furtikov
Dependencies
Development Dependencies
- spectator~> 0.11.0gitlab: arctic-fox/spectatordev
README
deep-json
DeepJSON is a lightweight module for retrieving values from a JSON object based on a given path. It provides a simple and intuitive way to navigate nested JSON structures and extract specific values.
Installation
-
Add the dependency to your
shard.yml:dependencies: deep-json: github: KirillFurtikov/deep-json -
Run
shards install
Usage
require "deep-json"
json = JSON.parse(File.read("example.json"))
{
"glossary": {
"title": "example glossary",
"size": [
5,
"asd",
null
],
"GlossDiv": {
"title\"s": "S",
"id": 5000000000000,
"null": null,
"bool": true,
"GlossList": {
"Gloss.Entry": {
"ID": "SGML",
"Sort As": "SGML",
"Gloss-Term": "Standard Generalized Markup Language",
"Acronym": "SGML",
"Abbrev": "ISO 8879:1986",
"GlossDef": {
"para": "A meta-markup language, used to create markup languages such as DocBook.",
"GlossSeeAlso": [
"GML",
"XML"
]
},
"GlossSee": "markup"
}
}
}
}
}
# Int
DeepJSON.get("glossary.GlossDiv.id", json) # => 5000000000000
# Bool
DeepJSON.get("glossary.GlossDiv.bool", json) # => true
# add # to get size of array
DeepJSON.get("glossary.size.#", json) # => 3
# allow to use escaping in key
DeepJSON.get("glossary.GlossDiv.title\"s", json) # => "S"
# If key has a dot, just escape it
DeepJSON.get("glossary.GlossDiv.GlossList.Gloss\\.Entry.ID", json) # => "SGML"
Contributing
- Fork it (https://github.com/KirillFurtikov/deep-json/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Contributors
- Kirill Furtikov - creator and maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This branch
- Branch
main- Seen
- Sep 11, 2023
- Crystal
1.9.2- Indexed
- yes
Dependents
No indexed shard depends on this one yet.
Repository
github.com/KirillFurtikov/deep-json
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 14, 2026
- Synced
- Aug 14, 2026
- Versions
- 1