Contiguity CLI provides a command-line interface to interact with Contiguity’s API.
Read more about using the CLI in the docs, at docs.contiguity.co.
Contiguity CLI can be used with Node.js or Deno.
Install the Contiguity CLI with Node:
$ npm install -g @contiguity/cli
Alternatively, install the Contiguity CLI with Deno:
$ deno install -An contiguity jsr:@contiguity/cli
You can also run the CLI without installing it with either Node or Deno:
$ npx @contiguity/cli --help
$ deno run -A jsr:@contiguity/cli --help
Before using other commands, set your Contiguity API token using the following command:
$ contiguity set-token
Deno, Node.js, and Pandoc are required to build the CLI. To install them, run the following commands:
# Windows
$ winget install DenoLand.Deno OpenJS.NodeJS JohnMacFarlane.Pandoc
# macOS
$ brew install deno node pandoc
# Ubuntu, Debian, and derivatives
$ sudo apt install nodejs pandoc && curl -fsSL https://deno.land/install.sh | sh
# Arch Linux, Manjaro, and derivatives
$ sudo pacman -S deno nodejs pandoc
# Red Hat, Fedora, and derivatives
$ sudo dnf install nodejs pandoc && curl -fsSL https://deno.land/install.sh | sh
# Void Linux
$ sudo xbps-install nodejs pandoc && curl -fsSL https://deno.land/install.sh | sh
Then, run the following command to build the CLI:
deno task build
The built CLI will be in ./npm
. You can test it by running npm i -g ./npm
to
install the built CLI globally.
If you have a man
program on your system (aka you aren't on Windows), you can
also run this command to build and preview the man page:
deno task preview-man
You can run the cli without building it by running this command:
deno task cli --help