npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bandiera-client

v3.0.0

Published

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.

Downloads

30

Readme

Bandiera Client (Node.js)

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 version Node.js version support Build status Dependencies MIT licensed

Installation

npm install bandiera-client

or add bandiera-client to your package.json file.

Usage

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. This argument is optional in all of the client methods. See the API documentation for available parameters.

Get features for all groups:

client.getAll(params, function (error, groups) {
    /*
    groups == {
        group_name: {
            feature_name: Boolean,
            ...
        },
        ...
    }
    */
});

// or

client.getAll(function (error, groups) {
    // ...
});

Get features for a group:

client.getFeaturesForGroup('group_name', params, function (error, features) {
    /*
    features == {
        feature_name: Boolean,
        ...
    }
    */
});

// or

client.getFeaturesForGroup('group_name', function (error, features) {
    // ...
});

Get an individual feature:

client.getFeature('group_name', 'feature_name', params, function (error, feature) {
    /*
    feature = Boolean
    */
});

// or

client.getFeature('group_name', 'feature_name', function (error, feature) {
    // ...
});

Options

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.

Contributing

If you would like to contribute please make sure that the tests pass and that the code lints successfully.

make lint test

License

Copyright © 2018 Springer Nature. Node Bandiera client is licensed under the MIT License.