Tool to inspect hex-encoded CBOR data and validate it against CDDL schemata.
You can use it online here: https://wasser.liebechaos.org or follow the installation instructions below.
- NodeJS 16
- Ruby 2.7.5
- cddl gem
Make sure you have the cddl
ruby gem installed, run npm install
and npm start
and go to http://localhost:3000.
docker build . -t cbor-tool
docker run -p "3000:3000" cbor-tool:latest
The image is published on DockerHub. You can use it to install cbor-tool
via docker-compose
for example:
version: '3'
services:
app:
image: p2panda/cbor-tool:v0.1.1
container_name: cbor-tool
restart: always
MIT