JS/TS Peer for the Fluence p2p network
Go to file
2020-12-08 17:13:24 +03:00
src Fix host imports in fluence-js (#997) 2020-12-08 17:13:24 +03:00
types Back to Apache 2.0 (#83) 2020-05-14 17:30:17 +03:00
.npmignore Builtin methods, update aquamarine (#960) 2020-10-23 14:01:21 +03:00
package-lock.json Fix host imports in fluence-js (#997) 2020-12-08 17:13:24 +03:00
package.json Fix host imports in fluence-js (#997) 2020-12-08 17:13:24 +03:00
README.md Use aqua wasm from package (#978) 2020-11-18 10:03:21 +03:00
tsconfig.json Fix host imports in fluence-js (#997) 2020-12-08 17:13:24 +03:00
webpack.config.js Fluence.parseAIR function to return AST as JSON (#994) 2020-12-07 14:18:42 +03:00

Fluence browser client

Browser client for the Fluence network based on the js-libp2p.

How to build

With npm installed building could be done as follows:

npm install fluence

Example

Shows how to register and call new service in Fluence network.

Generate new peer ids for clients.

let peerId1 = await Fluence.generatePeerId();
let peerId2 = await Fluence.generatePeerId();

Establish connections to predefined nodes.

let client1 = await Fluence.connect("/dns4/134.209.186.43/tcp/9003/ws/p2p/12D3KooWBUJifCTgaxAUrcM9JysqCcS4CS8tiYH5hExbdWCAoNwb", peerId1);
let client2 = await Fluence.connect("/ip4/134.209.186.43/tcp/9002/ws/p2p/12D3KooWHk9BjDQBUqnavciRPhAYFvqKBe4ZiPPvde7vDaqgn5er", peerId2);