dumont
Getting Started

Install

Build the dumont CLI from source.

dumont is pure Go (no CGo) and builds to a single binary.

Requirements

  • Go 1.26 or newer.

Build from source

git clone https://github.com/arjia-labs/dumont
cd dumont
go build -o dumont ./cmd/dumont

This produces a dumont binary in the current directory. Move it somewhere on your PATH (e.g. /usr/local/bin) to use it everywhere.

Install with go install

go install github.com/arjia-labs/dumont/cmd/dumont@latest

The binary lands in $(go env GOPATH)/bin.

Verify

dumont --help        # list verbs
dumont caps mem      # interrogate the in-memory backend

There is nothing else to install — no daemon to run, no kernel module, no mounts.

On this page