Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Mesh networking with peer-to-peer messaging for NodeJS. Ataraxia connects different NodeJS instances together and allows messages to be passed between these instances. Some instances may act as routers for other instances to create a mesh network.
For support for services with RPC and events see ataraxia-services.
npm install ataraxia
Also install one or more transports:
const Network = require('ataraxia');
const TCPTransport = require('ataraxia-tcp');
const net = new Network({ name: 'name-of-your-app-or-network' });
net.addTransport(new TCPTransport());
net.on('node:available', node => {
console.log('A new node is available:', node.id);
node.send('hello');
});
net.on('message', msg => {
console.log('A message was received', msg.type, 'with data', msg.data, 'from', msg.returnPath.id);
});
net.start()
.then(...)
.catch(...);
This example creates a network where instances on the same machine connect to each other locally first and then elects one instance to handle connections to other machines on the same network.
const Network = require('ataraxia');
const LocalTransport = require('ataraxia-local');
const TCPTransport = require('ataraxia-tcp');
const net = new Network({ name: 'name-of-your-app-or-network' });
const local = new LocalTransport();
local.on('leader', () => {
/*
* The leader event is emitted when this instance becomes the leader
* of the machine-local network. This instance will now handle
* connections to other machines in the network.
*/
net.addTransport(new TCPTransport());
});
net.addTransport(local);
net.start()
.then(...)
.catch(...);
new Network(options)
- create a new network using the given options. Options may be:
name
- Required. The name of the network, should be short and describe the app or library.endpoint
- Request that the local node is an endpoint that should not perform routing.start()
- start the network and its transportsstop()
- stop the network and its transportsaddTransport(transport)
- add a transport that should be usedon('node:available', node => ...)
- a node has been found and messages can now be sent and received to/from iton('node:unavailable', node => ...)
- a node is no longer availableon('message', ({ returnPath, type, data }) => ...)
- a message has been received from a nodeid
- get the id of the nodeavailable
- get if the node is reachableon('unavailable', () => ...)
- node is no longer availablesend(type, data)
- send a message of the given type with the specified data to the nodeon('message', ({ returnPath, type, data }) => ...)
- a message has been received from this nodeFAQs
P2P messaging over mesh networks
The npm package ataraxia receives a total of 37 weekly downloads. As such, ataraxia popularity was classified as not popular.
We found that ataraxia 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.