New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

fn-eventify

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fn-eventify

fn-eventify

latest
Source
npmnpm
Version
0.0.8
Version published
Maintainers
1
Created
Source

fn-eventify

fn-eventify attach EventEmitter interface to Function.

Installation

npm install fn-eventify

Usage

Initilize

The first, You should initialize fn-eventify like a creating an instace of EventEmitter.

import * as Eventify from 'fn-eventify'

const Eventor = Eventify.create();

Eventor has eventify(), subscribe() and subscribeAll()

Creating an eventify function

const fn = () => 'hello world';
const greet = Eventor.eventify('GREET', fn);

Callback function can return Promise.

Eventor.eventify('ASYNC_SOMETHING', () => Promise.resolve());

Subscribing / Unsubscribing an event

const unsubscribe = greet.subscribe((event) => {...});
unsubscribe();
const unsubscribe = Eventor.subscribe('GREET', (event) => {...})
unsubscribe();

You can listen all event.

const unsubscribe = Eventor.subscribeAll((event) => {...})
unsubscribe();

Publishing an event

To publish, You just call eventified function simply.

const message = greet() // return result and pubslish event

assert.equal(message, 'hello world')

Event Structure

{
	name: string; // event name
	payload: any; // something that returned by function
}

Extending an Event Structure

You can use inject((event: EventifyEvent) => EventifyEvent | {[prop: string]: any}).

const greet = Eventor.eventify('GREET', (message) => `${message}`)
	.inject((event) => Object.assign(event, { greetor: 'cotto' })) // inject by callback

or

const greet = Eventor.eventify('GREET', (message) => `${message}`)
	.inject({ greetor: 'cotto' }) // inject by Object

then

greet.subscribe((event) => {
	assert.deepEqual(event, {
		name: 'GREET',
		payload: 'hello world',
		greetor: 'cotto' // injected extra props
	})
})

greet('hello world'); //-> hello world

Keywords

EventEmitter

FAQs

Package last updated on 11 Dec 2016

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