simonflex-framework
TypeScript icon, indicating that this package has built-in type declarations

0.4.5 • Public • Published

Flex Framework

npm version

Flex Framework is a library implements Flex interface. It helps various wallet instances offer consistent Flex interface to Meter Dapps.

Installation

npm i simonflex-framework

Usage

To create framework instance, Flex.Driver needs to be implemented

import { Framework } from 'simonflex-framework';
import 'simonflex.driver';
 
class MyDriver implements Flex.Driver {
  // implementations
}
 
const driver = new MyDriver();
 
// it's suggested in development mode, which is helpful to diagnose driver implementation.
// const framework = new Framework(Framework.guardDriver(driver))
 
const framework = new Framework(driver);
 
// here `framework` is the ready-to-use Flex instance object

See also

Flex playground

Package Sidebar

Install

npm i simonflex-framework

Weekly Downloads

0

Version

0.4.5

License

LGPL-3.0

Unpacked Size

179 kB

Total Files

57

Last publish

Collaborators

  • simonzg