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

@kelsus/show-group-config-utilities

v1.0.16

Published

## Circle [![CircleCI](https://dl.circleci.com/status-badge/img/gh/Kelsus/show-group-config-utilities/tree/main.svg?style=svg&circle-token=ae302fea0c9ab0f36bcbbf973f999f0647558c7f)](https://dl.circleci.com/status-badge/redirect/gh/Kelsus/show-group-config

Downloads

354

Readme

show-group-config-utilities

Circle

CircleCI

Functions

getFeatureEffects

Description:

This function takes in a feature ID, an array of all available feature configurations, a context object for evaluating the rules, and optional effect type and rule trigger conditions. It then retrieves the feature configuration based on the provided feature ID, evaluates the rules based on the trigger conditions and effect type (if provided), and returns an object with the triggered effects for the specified feature ID. If the specified feature ID is not found in the features array, an error will be thrown with the message "Feature {featureId} not found".

Parameters:

  • featureId (String): The ID of the feature for which to get triggered effects.
  • features (Array): An array of all available feature configurations.
  • context (Object): An object containing the context for evaluating the rules.
  • effectType (String): The type of effect to filter for.
  • rulesTriggersConditions (Array): An array of rule trigger conditions.

Returns:

  • effect (Object): An object with the triggered effects for the specified feature ID.

Errors

Throws an error if the provided featureId is not found in the features array.

getFeatureValues

Description

This module provides a utility function getFeatureValues for retrieving the values, label, and default value of a feature in a Node.js application.

Parameters:

  • featureId (String): The ID of the feature for which to retrieve values.
  • features (Array): An array of all available feature configurations.

Returns: An object with the following properties:

  • label (String): The label of the feature.
  • values (Array): An array of values associated with the feature.
  • default (Any): The default value of the feature.

Errors

Throws an error if the provided featureId is not found in the features array.

**Example

const { getFeatureValues } = require('./getFeatureValues');

const features = [
  {
    id: 'color',
    label: 'Color',
    values: ['red', 'green', 'blue'],
    default: 'red',
  },
];

const featureValues = getFeatureValues({ featureId: 'color', features });

console.log(featureValues);
// Output:
// {
//   label: 'Color',
//   values: ['red', 'green', 'blue'],
//   default: 'red',
// }

validateFeatureTriggersConsistency

Description

This function validates the consistency of rule triggers in a group of feature configurations. Parameters

  • groupConfig: An object containing the feature group configuration. It should have the properties features and rulesTriggersConditions.

Returns

This function does not return any value.

Errors

If any trigger condition is not found, the function will throw an Error with the message: Trigger condition {triggersConditionsId} not found.

Example

const groupConfig = {
  features: [
    // ...feature objects with rules property
  ],
  rulesTriggersConditions: [
    // ...rule trigger condition objects with id property
  ],
};

try {
  validateFeatureTriggersConsistency(groupConfig);
  console.log('Feature triggers consistency is valid');
} catch (error) {
  console.error('Error:', error.message);
}

validateEffectValue

Description

This function validates the value of an effect based on its type.

Parameters

  • effect: An object containing the effect information. It should have the properties id, type, and value.
  • value: The value that will be checked based on the effect type.

Returns

This function does not return any value.

Errors

If the value is not valid, the function will throw an Error with the message: Invalid value for effect {id}, expected {type} {effectValue} ({typeof effectValue}) but got {value} ({typeof value}).

Example

const effect = {
  id: 'exampleEffect',
  type: 'equals',
  value: 10,
};

const valueToCheck = 10;

try {
  validateEffectValue({ effect, value: valueToCheck });
  console.log('Effect value is valid');
} catch (error) {
  console.error('Error:', error.message);
}