Nodejs event emitter implementation in Nextjs 13 or 14 #60534
Replies: 3 comments 2 replies
-
I mean, couldn't you have a src/lib/application.ts and listen from there?
The issue you're running into is that on that GET request, it only fires during the polling. Not knowing where the app is hosted is another issue as "serverless" hosts spin up instances on request. If you are on a traditional server then you can just import '@/lib/application' into 'src/middleware.ts' and it should work with emits. Also, it's never a good idea to wrap listeners in functions. That's a quick way to a memory leak my friend. Instead emit a callback. e.g. |
Beta Was this translation helpful? Give feedback.
-
Hi @techfortified, |
Beta Was this translation helpful? Give feedback.
-
I tried putting it on Curious as how others are able to implement eventEmitters in NextJs server |
Beta Was this translation helpful? Give feedback.
-
How do i make nodejs event emitter object to listen to emitted events globally within my nextjs13 application just like in normal nodejs environment?
I have a file post.js where a user creates a new post. I want to promptly return the response back to the user, emit an event where a handler function will listen to the emitted event in another file & perform some other tasks in the background like updating post tags count and then finally emitting an sse(server sent event) to client app to notify other connected clients.
First of all, i created a file known as eventEmitter.js where I created a single instance to be used within my application below;
My question is, how do i listen to the emitted event in other files like listener.js and route.js files other than just post.js file?
I want to listen to the emitted events globally within my nextjs app
The above works seamlessly in a nodejs environment and i expected it to work in nextjs environment too.
PS: I'm using nextjs App Router
Please help.
Beta Was this translation helpful? Give feedback.
All reactions