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.
blue-red-node-testing
Advanced tools
This package aims to provide a opinionated implementation of blue-red-testing package.
Install the package
yarn add blue-red-node-testing
Find a cosy place in your server where you can access res
and req
to place this test as it requires access to your cookies.
import aBTest from 'blue-red-node-testing;
const abTesting = aBTest(res, req);
const fooBarTest = abTesting("foobar test", [
{
name: "foo",
weight: 0.5 // this defaults to 0.5
outcome: true
},
{
name: "bar",
weight: 0.5 // this defaults to 0.5
outcome: false
}
]);
console.log(fooBarTest.name); // Returns the full name of the test, ie. AB_TEST_foobar-test
console.log(fooBarTest.result.groupName); // Returns "foo" or "bar"
console.log(fooBarTest.result.outcome); // Returns `true` or `false`
console.log(fooBarTest.digitalData); // The full name of the test and the bucket name, ie. AB_TEST_foobar-test_foo
Under the hood, this function...
If you change the cookie name to one of the buckets, it will force the test to always return the outcome of that bucket (ie. changing the cookie value to "foo" will result in the test returning true
as the outcome)
I append "AB_TEST_" so that you can easily recognise this name in the cookie, and anywhere else it's used.
Not at the moment. (PR's welcome!)
This is pamarily used for Google Analytics, so you can track what bucket is being shown on page load. Technically I return the bucket name, so you could choose to ignore this and format it however you want.
FAQs
AB testing on node server
The npm package blue-red-node-testing receives a total of 2 weekly downloads. As such, blue-red-node-testing popularity was classified as not popular.
We found that blue-red-node-testing 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.
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.