https://github.com/eclipse-biscuit/biscuit-component-wasm
NPM package distributing biscuit in WebAssembly for web components
https://github.com/eclipse-biscuit/biscuit-component-wasm
Last synced: about 1 year ago
JSON representation
NPM package distributing biscuit in WebAssembly for web components
- Host: GitHub
- URL: https://github.com/eclipse-biscuit/biscuit-component-wasm
- Owner: eclipse-biscuit
- License: apache-2.0
- Created: 2021-11-06T12:15:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T12:53:39.000Z (about 1 year ago)
- Last Synced: 2025-05-05T14:47:06.099Z (about 1 year ago)
- Language: Rust
- Size: 146 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Backend for biscuit-web-components
Biscuit-web-components can't use `biscuit-wasm` directly since it only exposes helpers dedicated to biscuit creation and verification.
This library exposes helpers for biscuit inspection, inline error reporting, etc.
```
wasm-pack build --scope biscuit-auth --target web --out-dir static --out-name biscuit
```
Generate the npm package:
```
wasm-pack build --scope biscuit-auth --target web --out-dir web --out-name biscuit
cd web
npm pack
// edit package.json to add "snippets" to the "files" array
```