yvan-sraka / palombe-node

Palombe lets you send and receive messages synchronously through different processes using named pipes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🕊️ Palombe npm version

Palombe lets you send and receive messages synchronously through different processes using named pipes

Quick example

Thread A

const palombe = require("palombe");

palombe.send("foo", "bar");

Thread B

const palombe = require("palombe");

console.log(palombe.receive("foo").toString("utf-8")); // bar

About

Palombe lets you send and receive messages synchronously through different processes using named pipes

License:GNU General Public License v3.0


Languages

Language:JavaScript 97.2%Language:Shell 2.8%