NodeBuilder is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing the testing-node-builder executable

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install node-builder

It will make the testing-node-builder command available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall node-builder uninstalls.

Adding node_builder library as a dependency

Run this command in a terminal, in your project's directory:

cargo add node-builder

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

node-builder = "0.12.0"

The node_builder library will be automatically available globally. Read the node_builder library documentation.

Back to the crate overview.