Skip to content

Commit

Permalink
Convert README to markdown style.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarzik committed May 3, 2017
1 parent 1dfe464 commit f1b86ed
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 7 deletions.
7 changes: 0 additions & 7 deletions README

This file was deleted.

30 changes: 30 additions & 0 deletions README.md
@@ -0,0 +1,30 @@

# UniValue

## Summary

A universal value class, with JSON encoding and decoding.

UniValue is an abstract data type that may be a null, boolean, string,
number, array container, or a key/value dictionary container, nested to
an arbitrary depth.

This class is aligned with the JSON standard, [RFC
7159](https://tools.ietf.org/html/rfc7159.html).

## Installation

This project is a standard GNU
[autotools](https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html)
project. Build and install instructions are available in the `INSTALL`
file following the `autogen.sh` step.

```$ ./autogen.sh
$ ./configure
$ make

## Design

UniValue provides a single dynamic RAII C++ object class,
and minimizes template use (contra json_spirit).

0 comments on commit f1b86ed

Please sign in to comment.