Skip to content

Commit ab27389

Browse files
committed
add badges
1 parent 0bc9d63 commit ab27389

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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+
[//]: # (![](https://img.shields.io/npms-io/quality-score/ipos?style=flat-square))
8+
39
_Share objects across different Node.js processes. Write and read on both sides._
410
This package manages objects via IPC for you. When you create an object, it creates an equivalent on connected
511
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
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

0 commit comments

Comments
 (0)