Top "Eventemitter" questions

An event emitter is a platform for triggering and listening for events.

Toggle property in parent Component from Child Component in Angular2 (similar to $emit in AngularJS)

I'm currently teaching myself Angular2 and I have a practical problem that would be easy to rectify in AngularJS but …

typescript angular eventemitter
Node.js: how can I return a value from an event listener?

How to i return value from the an event listeners? See example below: const EventEmitter = require("events").EventEmitter; emitter = new …

javascript node.js events event-handling eventemitter
Unable to figure out correct EventEmitter or Observable Syntax in Angular2 Services

I'm having a hard time finding much in the way of examples/guides for using observables in an Angular2 service. …

service observable angular eventemitter
Angular 4 - Calling a parent method from a child component not working

All of my event emitters are working properly except for one. child.ts: @Component({ ... outputs: ['fileUploaded'] }) export class childComponent implements …

angular typescript data-binding eventemitter
SSE Emitter : Manage timeouts and complete()

I am writing a web app where multiple listeners(Evcentsource SSE clients JS) will be connected to my server . what …

java spring server-sent-events eventemitter
Golang events: EventEmitter / dispatcher for plugin architecture

In Node.js I was able to make a WordPress clone rather easily using the EventEmitter to replicate and build …

go extensibility eventemitter plugin-architecture
Angular 2: emitter listener between components

I am making a 'skip to content' link. The link is in app.component and the content is in login.…

angular eventemitter
Node.js EventEmitter: How to bind a class context to the event listener and then remove this listener

Is there a way to access to the class context in the event listener method with possibility to remove the …

javascript node.js events typescript eventemitter
Communicate between sibling components Angular 2

I tried to follow this answer but its too confusing Angular 2 event catching between sibling components I want to call …

angular eventemitter angular2-components