1.7.1-rc.8 • Published 2 years ago

fico-web3-core-promievent v1.7.1-rc.8

Weekly downloads
-
License
LGPL-3.0
Repository
github
Last release
2 years ago

web3-core-promievent

NPM Package Dependency Status Dev Dependency Status

This is a sub-package of web3.js.

This is the PromiEvent package used to return a EventEmitter mixed with a Promise to allow multiple final states as well as chaining.

Please read the documentation for more.

Installation

Node.js

npm install web3-core-promievent

Usage

const Web3PromiEvent = require('fico-web3-core-promievent');

const myFunc = function(){
    const promiEvent = Web3PromiEvent();
    
    setTimeout(function() {
        promiEvent.eventEmitter.emit('done', 'Hello!');
        promiEvent.resolve('Hello!');
    }, 10);
    
    return promiEvent.eventEmitter;
};

// and run it
myFunc()
.on('done', console.log)
.then(console.log);
1.7.1-rc.8

2 years ago

1.7.1-rc.7

2 years ago

1.7.1-rc.6

2 years ago

1.7.1-rc.5

2 years ago

1.7.1-rc.4

2 years ago

1.7.1-rc.3

2 years ago

1.7.1-rc.2

2 years ago

1.7.1-rc.1

2 years ago

1.7.1-rc.0

2 years ago