Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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 9 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.