emit payload overwritten
See original GitHub issueHi, @kbrsh… when you emit something like:
instance.emit('doSomething', {product: 'cheese', type: 'cheddar'});
// emit overwrites the property 'type' with emit eventName param 'doSomething'
console.log(payload); // {product: 'cheese', type: 'doSomething'}
I think that emit payload could be:
{
data: {product: 'cheese', type: 'cheddar'},
type: 'doSomething'
}
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Overriding socket.io's emit and on? - node.js - Stack Overflow
There is a module called socket.io-wildcard which allows using wildcards on client and server side, no need to overwrite anything anymore
Read more >ndctl−wait−overwrite(1) - NDCTL User Guide - PMem.io
The kernel provides a POLL(2) capable sysfs file (security) to indicate the state of overwrite. This command waits for a change in the...
Read more >Emit data child to parent component - Get Help - Vue Forum
I would like to emit selectPosition from my child component to my ... //Payload to update tha data property SetPosition(payload){ this.
Read more >Types of event broadcasts | Moleculer - GitHub Pages
Emit balanced events. The event Listeners are arranged to logical groups. It means that only one listener is triggered in every group. Example....
Read more >aedes/Aedes.md at main · moscajs/aedes - GitHub
Emitted when the client registers itself to server. ... 'bbb') { packet.payload = Buffer.from('overwrite packet payload') } callback(null) }.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
How about something like:
Great idea!