
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
pomelo-robot
Advanced tools
pomelo-robot is a simple tool to benchmark the socket.io server's performance.
#pomelo-robot pomelo-robot is a simple tool to benchmark the socket.io server's performance.
pomelo-robot can run in multiple mode such as single machine or distributed machines with many processes.
pomelo-robot executes developer's custom javascript in a sand box and statistical analysis monitors including avg(min/max) responsing time and QPS, etc. Then reports data to the http server with graph display.
pomelo-robot can be also used in http benchmark with developer script.
##Installation
npm install pomelo-robot
##Usage
var envConfig = require('./app/config/env.json');
var config = require('./app/config/' + envConfig.env + '/config');
var Robot = require('pomelo-robot').Robot;
var robot = new Robot(config);
var mode = 'master';
if (process.argv.length > 2){
mode = process.argv[2];
}
if (mode !== 'master' && mode !== 'client') {
throw new Error(' mode must be master or client');
}
if (mode === 'master') {
robot.runMaster(__filename);
} else {
var script = (process.cwd() + envConfig.script);
robot.runAgent(script);
}
##API ###robot.runMaster() run master server and http server, then init server status including clients with startup file. ####Arguments
###robot.runAgent() robot run in client agent mode. ####Arguments
###Notice When pomelo-robot run in distribute mode, every client should be in same directory path and master could be ssh login automatic. Otherwise developer can start up agent manually. For the custom script, refer to the demo.
FAQs
pomelo-robot is a simple tool to benchmark the socket.io server's performance.
The npm package pomelo-robot receives a total of 2 weekly downloads. As such, pomelo-robot popularity was classified as not popular.
We found that pomelo-robot 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.