Skip to content

Commit cd2c077

Browse files
authored
Documentation and exports cleanup (#13)
1 parent 2ea31ec commit cd2c077

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

README.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -17,42 +17,47 @@ Clone this repo and build following the [Compilation] instructions below.
1717
Import the module:
1818

1919
```
20-
import { ec_add, ec_mul, ec_pairing } from 'rustbn'
20+
import { initRustBN } from 'rustbn'
21+
22+
const bn128 = await initRustBN()
2123
```
2224

2325
Curve Addition
2426

2527
```
2628
let inputHexString = ...
27-
let outputHexString = ec_add(inputHexString)
29+
let outputHexString = bn128.ec_add(inputHexString)
2830
```
2931

3032
Curve Multiplication
3133

3234
```
3335
let inputHexString = ...
34-
let outputHexString = ec_mul(inputHexString)
36+
let outputHexString = bn128.ec_mul(inputHexString)
3537
```
3638

3739
Curve Pairing
3840
```
3941
let inputHexString = ...
40-
let outputHexString = ec_pairing(inputHexString)
42+
let outputHexString = bn128.ec_pairing(inputHexString)
4143
```
4244

4345
## Developer
4446

4547
### Building the module
4648

4749
For basic setup:
50+
4851
- Install `rust` and `wasm-pack` via the [`wasm-pack` prerequisites](https://rustwasm.github.io/docs/wasm-pack/prerequisites/index.html)
4952
- Clone this repo
5053
- Install JS dependencies - `npm i`
51-
- Run `npm run build`
54+
- Run `npm run build:wasm` to compile the Rust code to WASM
55+
- Run `npm run wasm2b64` to convert the WASM bytecode to a base64 string consumable by the Typescript wrapper
56+
- Run `npm run build` to build the final JS outputs
5257

5358
### Build Outputs
5459

55-
The build process outputs both CommonJS and ESM builds of the library and specifies entry points based on the `main` and `module` fields in `package.json`. The CommonJS build is the direct output of `wasm-pack build --target nodejs` while the ESM build is a customized version of the output from `wasm-pack build --target web` that removes the need to use a bundler by converting the wasm bytecode to a base64 string and then placed in a JSON object that ESM environments can load directly. Note, the ESM glue code is found in [`src.ts`](./src.ts/rustbn.ts)
60+
The build process outputs both CommonJS and ESM builds of the library and specifies entry points based on the `main`, `module`, and alternatively the `exports` fields in `package.json`. Both builds start with the wasm build from `wasm-bindgen` which is then loaded by a Typescript wrapper of the WASM output. Our Typescript code is slightly different than the original Javascript generated by `wasm-bindgen` because the default ESM output would require a bundler.
5661

5762
## License
5863

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@
2424
"build": "rm -rf dist && scripts/ts-build.sh",
2525
"prepare": "npm run build",
2626
"test": "vitest run test/*",
27+
"build:wasm": "wasm-pack build --target web -d wasm",
2728
"wasm2b64": "node scripts/wasmToB64.js"
2829
},
2930
"main": "dist/cjs/rustbn.js",
3031
"module": "dist/esm/rustbn.js",
3132
"exports": {
32-
"require": "dist/cjs/rustbn.js",
33-
"import": "dist/esm/rustbn.js"
33+
"require": "./dist/cjs/rustbn.js",
34+
"import": "./dist/esm/rustbn.js"
3435
},
3536
"dependencies": {
3637
"@scure/base": "^1.1.5"

0 commit comments

Comments
 (0)