0.1.24 • Published 2 years ago

@anothersoftware/lotion-connect v0.1.24

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

lotion-connect

The Lotion connect() API in a standalone, browser-friendly module.

Installation

$ npm install lotion-connect

Usage

Connecting by GCI isn't supported in this module just yet, so for now, connect to your app like this:

let connect = require('lotion-connect')

let { state, send } = await connect(null, { 
  genesis: require('./genesis.json'),
  nodes: [ 'ws://localhost:46657' ]
})

console.log(await state)
console.log(await send({ foo: 'bar' }))