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 1
1
# Inter Process Object Sharing [ IPOS]
2
2
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
+
3
9
_ Share objects across different Node.js processes. Write and read on both sides._
4
10
This package manages objects via IPC for you. When you create an object, it creates an equivalent on connected
5
11
processes. 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
136
142
- ` process: ChildProcess ` The object of a subprocess IPOS should disconnect from. What gets returned
137
143
by ` child_process.exec() ` , ` child_process.execFile() ` , ` child_process.fork() ` , or ` child_process.spawn() `
138
144
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.
140
147
141
148
### ` ipos.create(key: string, value: any) `
142
149
You can’t perform that action at this time.
0 commit comments