New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@todesktop/client-ipc

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@todesktop/client-ipc - npm Package Compare versions

Comparing version

to
0.9.0

2

package.json
{
"name": "@todesktop/client-ipc",
"version": "0.8.0",
"version": "0.9.0",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -1,14 +0,5 @@

- [ToDesktop Client IPC](#todesktop-client-ipc)
- [Installation](#installation)
- [Usage](#usage)
- [Architecture](#architecture)
- [Development](#development)
# ToDesktop IPC
# ToDesktop Client IPC
Communicating between desktop app windows.
This is the repo for the [ToDesktop IPC](https://github.com/ToDesktop/todesktop-ipc) client.
This is a zero-dependency package for interacting with [@todesktop/plugin-ipc](https://www.npmjs.com/package/@todesktop/plugin-ipc). This package exposes a set of functions for communicating between windows.
## Installation

@@ -19,10 +10,11 @@

```sh
$ npm install @todesktop/client-ipc
npm install @todesktop/client-ipc
```
Installation of the [plugin](https://www.npmjs.com/package/@todesktop/plugin-ipc) package is also necessary.
Installation of the [plugin](https://www.npmjs.com/package/@todesktop/plugin-ipc) package is also necessary. Using ToDesktop Builder, navigate to **Plugins.** Click on the **Explore** button for "Selected Text" and install the package.
## Usage
### subscribe
### `subscribe`
Subscribes to a messaging channel and executes a callback when that message is triggered. The callback contains the `data` and `context` information from the sender.

@@ -36,9 +28,9 @@

const unsubscribe = subscribe("foo", (data, context) => {
console.log({ data, context });
/**
* {
* data: { msg: "bar" },
* context: { windowId: 2, viewId: 2 }
* }
*/
console.log({ data, context });
/**
* {
* data: { msg: "bar" },
* context: { windowId: 2, viewId: 2 }
* }
*/
});

@@ -48,6 +40,6 @@

unsubscribe();
```
### publish
### `publish`
Publishes data to a messaging channel.

@@ -59,6 +51,6 @@

publish("foo", { msg: "bar" });
```
### identify
### `identify`
Retrieves id information about the window and view.

@@ -69,22 +61,11 @@

(async () => {
console.log(await identify())
/**
* {
* windowId: 1,
* viewId: 1
* }
*/
})
async () => {
console.log(await identify());
/**
* {
* windowId: 1,
* viewId: 1
* }
*/
};
```
## Architecture
This package requires the following files:
- `src/index.ts`: exposes plugin functionality through strongly-typed, easy-to-use functions.
- `src/generated/plugin.d.ts`: automatically generated types from `@todesktop/plugin-ipc`'s `index.ts` file.
## Development
Refer to the [root](https://github.com/ToDesktop/todesktop-ipc) repo for development instructions.