
Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@hackdonalds/emitter
Advanced tools
This project uses node and npm. Go check them out if you don't have them locally installed.
$ npm install --save @hackdonalds/emitter
// using ES6 modules
import Emitter from '@hackdonalds/emitter'
// using CommonJS modules
var Emitter = require('@hackdonals/emitter').default
The UMD build is also available on unpkg:
<script src="https://unpkg.com/@hackdonalds/emitter@0.2.0/dist/index.js"></script>
You can find the library on window.HackDonalds.Emitter
.
import Emitter from '@hackdonalds/emitter'
// OR
const Emitter = require('@hackdonalds/emitter').default
const emitter = new Emitter()
// listen to an event
emitter.on('foo', e => console.log('foo', e) )
// listen to all events
emitter.on('*', (type, e) => console.log(type, e) )
// fire an event
emitter.emit('foo', { a: 'b' })
// working with handler references:
function onFoo() {}
emitter.on('foo', onFoo) // listen
emitter.off('foo', onFoo) // unlisten
Parameters
all
EventHandlerMapReturns Mitt
Register an event handler for the given type.
Parameters
type
String Type of event to listen for, or "*"
for all eventshandler
Function Function to call in response to given eventRemove an event handler for the given type.
Parameters
type
String Type of event to unregister handler
from, or "*"
handler
Function Handler function to removeInvoke all handlers for the given type.
If present, "*"
handlers are invoked after type-matched handlers.
Note: Manually firing "*" handlers is not supported.
Parameters
type
String The event type to invokeevt
Any? Any value (object is recommended and powerful), passed to each handlerFound a problem? Want a new feature? First of all see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.
FAQs
A simple better event emitter
The npm package @hackdonalds/emitter receives a total of 0 weekly downloads. As such, @hackdonalds/emitter popularity was classified as not popular.
We found that @hackdonalds/emitter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.