
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
remote-event-emitter
Advanced tools
Deliver events remotely over Unix sockets or TCP connections using standard EventEmitter
Deliver Node's EventEmitter events over Unix sockets or TCP connections 🚀
This module allows forwarding events (including JSON-serialisable arguments to the events) to another process, with the receiving end behaving as if the events were emitted locally. You can use this for IPC communications where one-directional messaging is needed (ie. one process sends events and another process receives them).
The events are delivered as follows:
EventEmitter
instance - via emitter.emit('event', ...args)
connection
event every time someone connects to the socket. This event will receive a single argument, a source
, which basically mirrors the event emitter from the provider side (it will emit the events the provider emits in the other process)Install this package on both ends and use either the Consumer
or Producer
class.
npm install --save remote-event-emitter
import { Consumer } from 'remote-event-emitter'
const consumer = new Consumer()
// Bind to a socket
await consumer.listen({ address: '/tmp/my-fancy.sock' })
// Or, bind to a TCP port 12345
await consumer.listen({ address: 12345 })
// Handle for incoming connections
consumer.on('connection', source => {
// The events emitted on source will match the events emitted
// in the provider process
source.on('hello', string, flag => {
console.log(string) // -> "world"
console.log(flag) // true
})
source.once('close', () => {
console.log('Client disconnected!')
})
})
// When you no longer want to accept new connections from providers
// This will close the socket.
await consumer.close()
import { Provider } from 'remote-event-emitter'
// The socket must exist, otherwise an error will be thrown
const provider = new Provider({ address: '/tmp/my-fancy.sock' })
provider.emit('hello', 'world', true)
// Always close the connection when you are done sending events
provider.end()
See mocha-reporter-remote for a reference implementation on the provider and atom-ide-mocha for the consumer side.
See the LICENSE file for information.
FAQs
Deliver events remotely over Unix sockets or TCP connections using standard EventEmitter
We found that remote-event-emitter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.