
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
remote-protocol
Advanced tools
A remote protocol for handling remote session and execute actions remotely.
Enable peer to create session with other peer and executing actions remotely 💫.
To create a session you should supply an duplex stream with objectMode turn on. See the
remote-instance module for a possible
implementation.
All the communication between the peers handled by actions. An Action is simple class with a
fetch and / or exec methods that the peers can use. The protocol has build-in support for
requests and responses in order to fetch actions remotely.
npm install remote-protocol
const { Session, Action } = require('remote-protocol');
class FooAction extends Action {
fetch() {
return Math.random();
}
}
// create an object mode stream that's bind to itself as-if other peer send the object
const objectStream = new PassThrough({ objectMode: true });
// create a session
const session = new Session(objectStream);
session.request(
new FooAction(),
result => {
// `result` is random number
},
error => {
// handle request error
},
);
This module is a part of the remote-lib library.
Here is the relevant documentation for this module:
© 2017 Moshe Simantov
Licensed under the Apache License, Version 2.0.
FAQs
A remote protocol for handling remote session and execute actions remotely.
We found that remote-protocol demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.