
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@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.5.1/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
For better autocompletion Emitter class takes parameters for possible event names :
import Emitter from '@hackdonalds/emitter'
const emitter = new Emitter<'foo' | 'bar'>()
emitter.on('foo', e => console.log('foo', e) )
emitter.on('bar', e => console.log('foo', e) )
// Will throw an error:
emitter.on('bar2', e => console.log('foo', e) )
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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.