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.
- Host: GitHub
- URL: https://github.com/niyarin/peltier
- Owner: niyarin
- License: mit
- Created: 2026-01-30T05:40:43.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-04-28T21:45:10.000Z (3 months ago)
- Last Synced: 2026-04-28T23:21:41.782Z (3 months ago)
- Topics: edn, nippy
- Language: C
- Homepage:
- Size: 96.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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