diff --git a/tfhe/docs/integration/js-on-wasm-api.md b/tfhe/docs/integration/js-on-wasm-api.md index fcb199ad55..4f0d8aea5c 100644 --- a/tfhe/docs/integration/js-on-wasm-api.md +++ b/tfhe/docs/integration/js-on-wasm-api.md @@ -141,7 +141,7 @@ Some parameter sets lead to the FHE keys exceeding the 2GB memory limit of WASM, ### Setting up TFHE-rs JS on WASM API for Node.js programs. -To build the JS on WASM bindings for **TFHE-rs**, install [`wasm-pack`](https://rustwasm.github.io/wasm-pack/) and the necessary [`rust toolchain`](https://rustup.rs/). Clone the **TFHE-rs** repository and build using the following commands (this will build using the default branch, you can check out a specific tag depending on your requirements): +To build the JS on WASM bindings for **TFHE-rs**, install [`wasm-pack`](https://drager.github.io/wasm-pack/) and the necessary [`rust toolchain`](https://rustup.rs/). Clone the **TFHE-rs** repository and build using the following commands (this will build using the default branch, you can check out a specific tag depending on your requirements): ```shell $ git clone https://github.com/zama-ai/tfhe-rs.git @@ -150,7 +150,7 @@ Cloning into 'tfhe-rs'... Resolving deltas: 100% (3866/3866), done. $ cd tfhe-rs $ cd tfhe -$ rustup run wasm-pack build --release --target=nodejs --features=boolean-client-js-wasm-api,shortint-client-js-wasm-api +$ wasm-pack build --release --target=nodejs --features=boolean-client-js-wasm-api,shortint-client-js-wasm-api [INFO]: Compiling to Wasm... ... [INFO]: :-) Your wasm pkg is ready to publish at ... @@ -164,7 +164,7 @@ After the build, a new directory **pkg** is available in the `tfhe` directory. ```shell $ ls pkg -LICENSE index.html package.json tfhe.d.ts tfhe.js tfhe_bg.txt tfhe_bg.wasm tfhe_bg.wasm.d.ts +LICENSE README.md package.json tfhe.d.ts tfhe.js tfhe_bg.wasm tfhe_bg.wasm.d.ts $ ```