Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clojure/clr.data.json
JSON in Clojure on the CLR
https://github.com/clojure/clr.data.json
Last synced: 3 months ago
JSON representation
JSON in Clojure on the CLR
- Host: GitHub
- URL: https://github.com/clojure/clr.data.json
- Owner: clojure
- License: epl-1.0
- Created: 2013-03-12T13:39:09.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-07-15T18:04:06.000Z (6 months ago)
- Last Synced: 2024-09-29T17:21:23.399Z (3 months ago)
- Language: Clojure
- Size: 104 KB
- Stars: 6
- Watchers: 27
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# clojure.data.json.clr #
JSON parser/generator to/from Clojure data structures.
A port of [clojure/data.json](https://github.com/clojure/data.json) library to ClojureCLR.
# Releases
Latest stable release: 2.5.0
[clj](https://clojure.org/guides/getting_started) dependency information:
```clojure
io.github.clojure/clr.data.json {:git/tag "v2.5.0" :git/sha "1c738a1"}
```Nuget reference:
```
PM> Install-Package clojure.data.json -Version=2.5.0
```Leiningen/Clojars reference:
```
[org.clojure.clr/data.json "2.5.0"]
```# Usage / API #
See the [README on the parent project](https://github.com/clojure/data.json/blob/master/README.md).
See the [API documentation for the parent project](http://clojure.github.com/data.json/).
All has been implemented except (1) the compatibility interface to the 0.1 API and (2) support for older releases of Clojure.
# Copyright and License #Original ClojureJVM code:
> Copyright (c) Stuart Sierra, 2012. All rights reserved. The use and distribution terms for this
> software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
> which can be found in the file epl-v10.html at the root of this distribution. By using this software
> in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this
> notice, or any other, from this software.This project copies extensively from that codebase. Edits and inclusions are marked in an obvious manner. The modified code is:
> Copyright (c) David Miller, 2013. All rights reserved. The use and distribution terms for this
> software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
> which can be found in the file epl-v10.html at the root of this distribution. By using this software
> in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this
> notice, or any other, from this software.