4 releases (2 breaking)
| 0.2.0 | Nov 7, 2025 |
|---|---|
| 0.1.1 | Oct 8, 2025 |
| 0.1.0 | Jun 12, 2025 |
| 0.0.1 | Sep 9, 2024 |
#1159 in Web programming
21KB
107 lines
JunoBuild-Didc
junobuild-didc is a CLI tool for generating JavaScript, TypeScript, or DID output from a Candid .did file using the didc tool.
This utility is designed to be integrated in Juno's CLI.
Installation
You can install junobuild-didc globally using Cargo by running:
cargo install junobuild-didc
Usage
You can use the junobuild-didc command to generate JavaScript or TypeScript bindings from a DID file.
junobuild-didc --input <input_file.did> --target <js|ts> [--output <output_file>]
Example
junobuild-didc --input ./path/to/interface.did --target ts --output ./generated/output.ts
--inputor-i: Path to the.didfile.--targetor-t: Choose eitherjsfor JavaScript ortsfor TypeScript output.--outputor-o: (Optional) Specify the output file. If omitted, the generated content will be printed to the console.
Development
Building from Source
If you want to build the tool from the source, you can clone the repository and build it yourself.
git clone https://github.com/junobuild/didc
cd didc
cargo build --release
Once built, the binary will be located in target/release. You can run it from the root directory:
./target/release/junobuild-didc --help
This will display the available commands and usage instructions.
Running Tests
You can run the tests with:
cargo test
License
This project is licensed under the MIT License. See the LICENSE file for details.
Dependencies
~10–14MB
~281K SLoC