How to use shared memory in nodejs program?

I have several C ++ services running on a server, and a node server program that listens on a specific port. Can I use shared memory between C ++ services and nodejs program? I want users to send data through a nodejs server, and these C ++ services access them. Is it possible?

+5
source share
2 answers

I tried to write a C / C ++ shared memory access binding from nodejs. https://github.com/supipd/node-shm

Keep working (but work for me), it may be useful if a mistake or suggestion let me know.

+3
source
+2

All Articles