An open API service indexing awesome lists of open source software.

https://github.com/niyarin/peltier

Fast CLI tool to convert Nippy and EDN.
https://github.com/niyarin/peltier

edn nippy

Last synced: 3 months ago
JSON representation

Fast CLI tool to convert Nippy and EDN.

Awesome Lists containing this project

README

          

# Peltier
Fast CLI tool to convert Nippy and EDN.

## Usage

### Thaw (Nippy → EDN)
```sh
# output edn
peltier thaw input.nippy

# Pretty print
peltier thaw -p input.nippy

# Output to file
peltier thaw -o output.edn input.nippy
```

### Freeze (EDN → Nippy)
```sh
# Convert EDN to Nippy
peltier freeze input.edn -o output.nippy

# Write to stdout (binary)
peltier freeze input.edn > output.nippy
```

## Compile
```
make
```

## License
[MIT](https://github.com/niyarin/peltier/blob/main/LICENSE)

## TODO / Known Issues
- [ ] Compression support
- [ ] Encryption support