json-tools v1.0.1

An implementation of RFC-6901 and RFC-6902 in Crystal Lang

json-tools

Built with Crystal Build Status Releases

An implementation of RFC-6901 and RFC-6902

Installation

Add this to your application's shard.yml:

dependencies:
  json-tools:
    github: impatienttraveller/json-tools

Usage

require "json-tools"

Once you have a JSON::Any object in memory you can address any value using the Pointer class:

json : JSON::Any = ...
val = Json::Tools::Pointer.new("/foo/0/bar").eval(json)

JSON object can be patched by using the Patch class:

patch : JSON::Any = ...
json : JSON::Any = ...
patched_json = Json::Tools::Patch.new(patch).apply(json)

This creates a copy of the passed JSON object to work with and the original object is not altered.

Development

Please raise a GitHub issue and document the commit with the following format:

[issue-x] Description

Contributing

  1. Fork it (https://github.com/impatienttraveller/json-tools/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • ddcprg Daniel del Castillo - creator, maintainer
Repository

json-tools

Owner
Statistic
  • 19
  • 1
  • 1
  • 0
  • 0
  • over 5 years ago
  • February 9, 2019
License

MIT License

Links
Synced at

Mon, 05 May 2025 02:28:41 GMT

Languages