Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@splitsoftware/splitio
Advanced tools
@splitsoftware/splitio is a feature flagging and experimentation platform that allows you to manage feature rollouts, run A/B tests, and perform real-time analytics. It helps in delivering features to users in a controlled manner, enabling you to test and iterate quickly.
Feature Flagging
This feature allows you to manage feature flags, enabling or disabling features for specific users or groups. The code sample demonstrates how to initialize the Split.io client and check the status of a feature flag for a user.
const splitio = require('@splitsoftware/splitio');
const factory = splitio({ core: { authorizationKey: 'YOUR_API_KEY' } });
const client = factory.client();
client.on(client.Event.SDK_READY, () => {
const treatment = client.getTreatment('user123', 'feature_flag_name');
if (treatment === 'on') {
// Feature is enabled
} else {
// Feature is disabled
}
});
A/B Testing
This feature allows you to run A/B tests by assigning different treatments (variants) to users. The code sample shows how to determine which variant a user should see based on the experiment configuration.
const splitio = require('@splitsoftware/splitio');
const factory = splitio({ core: { authorizationKey: 'YOUR_API_KEY' } });
const client = factory.client();
client.on(client.Event.SDK_READY, () => {
const treatment = client.getTreatment('user123', 'experiment_name');
if (treatment === 'variant_a') {
// Show variant A
} else if (treatment === 'variant_b') {
// Show variant B
}
});
Real-time Analytics
This feature allows you to track user events and conversions in real-time. The code sample demonstrates how to track a purchase event for a user, which can be used for analytics and reporting.
const splitio = require('@splitsoftware/splitio');
const factory = splitio({ core: { authorizationKey: 'YOUR_API_KEY' } });
const client = factory.client();
client.on(client.Event.SDK_READY, () => {
client.track('user123', 'conversion', 'purchase', 100);
});
LaunchDarkly is a feature management platform that provides similar functionality to Split.io, including feature flagging, A/B testing, and real-time analytics. It offers a robust set of tools for managing feature rollouts and experiments.
This package provides support for NodeJS implementations. demo!.
npm install --save @splitsoftware/splitio
const SPLIT_TOKEN = 'epa57jv812r4602iu43no8jm1h';
const splitEngine = require('@splitsoftware/splitio');
splitEngine(SPLIT_TOKEN).then((/* engine ready */) => {
console.log('Is "my_sample_feature" available? => ', splitEngine.isOn('my_sample_feature') ? 'yes' : 'no');
})
.catch((error) => {
console.log('Something went wrong while doing the startup of Split');
});
Given a key and a featureName, ask the engine if the feature is available for the given key.
FAQs
Split SDK
The npm package @splitsoftware/splitio receives a total of 212,815 weekly downloads. As such, @splitsoftware/splitio popularity was classified as popular.
We found that @splitsoftware/splitio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.