Search code examples
node.jsreactjseventemitter

Publisher / Subscriber model in ReactJS


Does ReactJS have a publisher / subscriber model similar to EventEmitter in node?


Solution

  • No, ReactJS does not have an event emitter-like implementation. The core framework is focused on UI. If you need more complex events than callbacks, there are many available as npm packages.