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.
bandiera-client
Advanced tools
Bandiera is a simple, stand-alone feature flagging service that is not tied to any existing web framework or language. This is a client for talking to the web service.
This is a client for talking to the Bandiera feature flagging service from a Node.js application. This client currently only implements the read methods of the v2 Bandiera API.
npm install bandiera-client
or add bandiera-client
to your package.json
file.
Create an instance of the bandiera client:
var bandiera = require('bandiera-client');
var client = bandiera.createClient('http://your-bandiera-server.com');
Each method of the client requires a callback. These callbacks accept two arguments, the first is an error object or null
the second contains the response.
In the examples below, params
is an object containing query parameters to send as part of the request to Bandiera. See the API documentation for available parameters.
Get features for all groups:
client.getAll(params, function (err, groups) {
/*
groups == {
group_name: {
feature_name: Boolean,
...
},
...
}
*/
});
Get features for a group:
client.getFeaturesForGroup('group_name', params, function (err, features) {
/*
features == {
feature_name: Boolean,
...
}
*/
});
Get an individual feature:
client.getFeature('group_name', 'feature_name', params, function (err, feature) {
/*
feature = Boolean
*/
});
The Node.js Bandiera client also accepts options in construction which allow you to tweak the client's behaviour:
var client = bandiera.createClient('http://your-bandiera-server.com', {
// options go here
});
logger.debug
(function)A logging function which will be called with debug messages. This should accept the same arguments as console.log
. Defaults to an empty function.
logger.warn
(function)A logging function which will be called with warning messages. This should accept the same arguments as console.log
. Defaults to an empty function.
timeout
(number)A timeout (in milliseconds) after which an API request should fail. Defaults to 400
.
If you would like to contribute please make sure that the tests pass and that the code lints successfully.
make lint test
Copyright © 2015 Nature Publishing Group.
Node Bandiera client is licensed under the MIT License.
FAQs
Bandiera is a simple, stand-alone feature flagging service that is not tied to any existing web framework or language. This is a client for talking to the web service.
We found that bandiera-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.