
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.
Connect two EventEmitters via a socket.
npm i revents
In the server.js file:
const { RemoteEventEmitter: Connection } = require('revents')
const net = require('net')
const server = net.createServer(socket => {
const connection = new Connection(socket)
connection.remoteEmit('ping')
connection.on('pong', () => {
console.log('pong')
})
})
server.listen(8080)
In the client.js file:
const { RemoteEventEmitter } = require('revents')
const net = require('net')
const socket = net.connect(8080)
const connection = new Connection(socket)
connection.remoteEmit('pong')
connection.on('ping', () => {
console.log('ping')
}
The RemoteEventEmitter extends the Connection class from the socket-json-wrapper package.
This means that you can use the send method and the "message" event.
<string> - The name of the event.<any> - Arguments for the event.Emit an event on the EventEmitter on the other side of the socket connection.
It returns a <boolean> that is true if the event was written to the socket.
FAQs
Connect two EventEmitters via a socket.
The npm package revents receives a total of 6 weekly downloads. As such, revents popularity was classified as not popular.
We found that revents 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.