Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@best/agent-hub
Advanced tools
A best hub represents a remote runner who relies/abstract other best-agents. These are the main benefits of using the agent hub:
To start the hub server, simply run in your command line:
node bin/best-agent-hub.js
This command will start the hub server using the following configuration:
6000
. It can be overridden by setting env.PORT
to the desired port.secret
. It's recommended to override it by setting env.TOKEN_SECRET
to the desired secret used authenticate clients.You can configure a preset of agents when the hub starts by setting env.CONFIG
to a json string representing the config for the hub.
The configuration of the hub is an array of hubs agents. Each agent represents a remote best agent like:
const config = {
agents: [
{
spec: {
browser: "chrome", // Browser name
version: "76" // Browser version (major)
},
host: "http://localhost:5000", // Required. Url used to connect to the agent.
options: { path: "/best" }, // Connection
remoteRunner: "@best/runner-headless", // Required. The runner which the agent will use when running the job.
remoteRunnerConfig: {}, // Required (may be an empty object). The Runner config for the remote runner in the agent.
},
{
spec: {
browser: "ie",
version: "11"
},
host: "http://127.0.0.1:5002",
options: { path: "/best" },
remoteRunner: "@best/runner-webdriver",
remoteRunnerConfig: {
"webdriverOptions": {
"desiredCapabilities": {
"platform": "WINDOWS",
"browserName": "internet explorer",
"version": "11",
"ignoreZoomSetting": true,
"initialBrowserUrl": "about:blank",
"nativeEvents": false,
}
}
},
}
]
}
// set env.CONFIG=JSON.stringify(config);
Note: All agents with the same spec, should have the same configuration and hardware characteristics, this must be ensured given that a job to be run with these specs, can run in any of the agents, and they should return same results.
Add a new runner config section on your best.config:
// Replace this token with a generated one for the used TOKEN_SECRET when starting the hub server
const hubAuthenticationToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzY29wZSI6ImNsaWVudCIsImlhdCI6MTU2MTYwNzI1OCwiZXhwIjoxNTY0MTk5MjU4fQ.BER-PIIlsf6NWNBctWrmS1YWB4QkI2aYiNp0BE6aASU';
module.exports = {
projectName: 'simple-benchmark-chrome',
benchmarkOnClient: true,
"runnerConfig": [
{
"runner": "@best/runner-headless",
"alias": "default"
},
// Configs to use the hub
{
"runner": "@best/runner-hub",
"alias": "hub-chrome",
"config": {
"host": "http://localhost:6000",
"options": {
path: "/hub",
query: {
token: hubAuthenticationToken
}
},
"spec": {
"browser": "chrome",
"version": "76"
}
}
},
{
"runner": "@best/runner-hub",
"alias": "hub-ie11",
"config": {
"host": "http://localhost:6000",
"options": {
path: "/hub",
query: {
token: hubAuthenticationToken
}
},
"spec": {
"browser": "ie",
"version": "11"
}
}
},
],
};
Then you can run your measures in your project:
# Measures in chrome:
best --runner hub-chrome
# Measures in ie11:
best --runner hub-ie11
Once the hub has already started you can add agents by doing a post request to /api/v1/agents
. Example:
curl -X POST \
http://localhost:6000/api/v1/agents \
-H 'authorization: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzY29wZSI6ImFnZW50IiwiaWF0IjoxNTYxNjE0MjM3LCJleHAiOjE1NzcxNjYyMzd9.IjdCBSPPIGSgpYHN8Pxhusaiv48T1t6rmxR2xzdp17M' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"host":"http://localhost:5000",
"options":{"path":"/best"},
"remoteRunner":"@best/runner-headless",
"remoteRunnerConfig":{},
"spec": {
"browser": "chrome",
"version": "76"
}
}'
FAQs
Best Hub
The npm package @best/agent-hub receives a total of 10 weekly downloads. As such, @best/agent-hub popularity was classified as not popular.
We found that @best/agent-hub demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.