File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 11# Inter Process Object Sharing [ IPOS]
22
3+ ![ ] ( https://img.shields.io/npm/v/ipos?style=flat-square )
4+ ![ ] ( https://img.shields.io/coveralls/github/drinking-code/inter-process-object-sharing?style=flat-square )
5+ ![ ] ( https://img.shields.io/github/workflow/status/drinking-code/inter-process-object-sharing/Test?style=flat-square )
6+
7+ [ // ] : # (  ; )
8+
39_ Share objects across different Node.js processes. Write and read on both sides._
410This package manages objects via IPC for you. When you create an object, it creates an equivalent on connected
511processes. When you update that object, it updates the equivalent accordingly. And if you delete the object, it will
@@ -136,7 +142,8 @@ Disconnect a subprocess to the IPOS instance. Closed subprocess automatically ge
136142- ` process: ChildProcess ` The object of a subprocess IPOS should disconnect from. What gets returned
137143 by ` child_process.exec() ` , ` child_process.execFile() ` , ` child_process.fork() ` , or ` child_process.spawn() `
138144
139- ** Returns:** ` boolean ` . ` true ` if a process was connected and has been disconnected, or ` false ` if the process was not connected.
145+ ** Returns:** ` boolean ` . ` true ` if a process was connected and has been disconnected, or ` false ` if the process was not
146+ connected.
140147
141148### ` ipos.create(key: string, value: any) `
142149
You can’t perform that action at this time.
0 commit comments