Skip to content

Commit

Permalink
Brush up readme
Browse files Browse the repository at this point in the history
  • Loading branch information
justone committed Jun 13, 2020
1 parent ebde5d5 commit c437bf8
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,35 @@
# brisk
Freeze and thaw with Nippy at the command line

Freeze and thaw with [Nippy](https://github.com/ptaoussanis/nippy) at the command line.

# Install

Download the latest from the [releases page](https://github.com/justone/brisk/releases).

# Usage

Freeze data:

```
brisk --freeze -i data.edn -o data.nippy
```

Thaw data:

```
brisk --thaw -i data.nippy -o data.edn
```

If input or output is not specified, stdin or stdout will be used:

```
cat data.edn | brisk -f | brisk -t > data2.edn
```

# To Do

* [Babashka pod](https://github.com/babashka/babashka.pods) support, exposing nippy functions.

# Things that don't work

* Embedded objects - Nippy can handle them, but Graal VM does not support them.

0 comments on commit c437bf8

Please sign in to comment.