You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

agent.pw

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent.pw

CLI for agent.pw — the password manager for AI agents

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

Biscuit-wasm

This repo is part of the eclipse biscuit project.

This library wraps the Rust implementation of Eclipse Biscuit tokens in WebAssembly, for usage in NodeJS and browsers.

It provides both EcmaScript and CommonJS modules, along with TypeScript type definitions.

Usage

Add this dependency to your package.json:

{
  "dependencies": {
    "@biscuit-auth/biscuit-wasm": "0.6.0-beta.1"
  }
}

Usage examples are available here.

Node

see the example code in examples/node

The node executable must be started with the --experimental-wasm-modules flag.

In browser

see the example code in examples/frontend

Importing a WebAssembly library with a bundler can take a bit of configuration. We have a working example with Webpack, and would welcome example configuration for other bundlers:

const path = require("path");

module.exports = {
  entry: "./index.js",
  output: {
    filename: "index.js",
    path: path.resolve(__dirname, "dist"),
  },
  experiments: {
    asyncWebAssembly: true,
  },
};

License

Licensed under the Apache 2.0 License.

Copyright 2021 Geoffroy Couprie

FAQs

Package last updated on 19 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts