Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

emit-mapper

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emit-mapper

Re-emit events while mapping them to new names.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

emit-mapper

NPM version Downloads Azure Pipelines Build Status Travis Build Status AppVeyor Build Status Coveralls Status Gitter chat

Re-emit events while mapping them to new names.

Usage

var src = new EventEmitter();
var dest = new EventEmitter();
var events = {
  before: 'preload:before',
  success: 'preload:success',
  failure: 'preload:failure',
};

var cleanup = emitMapper(src, dest, events);

dest.on('preload:before', console.log);
dest.on('preload:success', console.log);
dest.on('preload:failure', console.log);

src.emit('before', 'some value');
src.emit('success', 1, 2, 3);
src.emit('failure', 'moduleName', new Error('some error'));

// No more events will be re-emitted after cleanup
cleanup();

src.emit('before', 'not re-emitted');

API

emitMapper(source, destination, eventMapping)

Takes a source EventEmitter, a destination EventEmitter, and an eventMapping object that maps source events to destination events. Whenever an event from the eventMapping object is emitted on source, a new event will be emitted on destination with the mapped named but containing all the same arguments.

Returns a cleanup method to remove all handlers registered for re-emitting.

Prior art

This module is heavily inspired by re-emitter but the ability to map event names to new names was needed. Also, this module supports back to node 0.10 while re-emitter only supports node LTS versions.

License

MIT

FAQs

Package last updated on 28 Apr 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc