Skip to content

Commit

Permalink
Link the protocol implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
benbucksch committed Jan 30, 2021
1 parent 0efc5ae commit 3eb45a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# jpc - Remote procedure calls between JS objects
# jpc - Remote procedure calls between JS objects in different processes

jpc allows you to call JS objects in other processes. From your JS objects, it automatically
creates an API that resembles your object API, just with an `await` in front of every call.
It then transmits the call over the channel and call the objects in the remote process,
and returns the result back to you.

It can work over various communication channels to communicate with the remote process:
* WebSockets
* Electron IPC
* [WebSockets](https://github.com/benbucksch/jpc-ws)
* [Electron IPC](https://github.com/benbucksch/jpc-electron-ipc)
* DOM events
* TCP

Expand Down

0 comments on commit 3eb45a9

Please sign in to comment.