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

@ircam/parameters

v1.2.2

Published

Tiny and extendable library for class parameters type checking and reflection

Downloads

10

Readme

@ircam/parameters

Tiny and extendable library for class parameters type checking and reflection.

Install

npm install [--save] @ircam/parameters

Usage

import parameters from '@ircam/parameters'

const definitions = {
  myBooleanParam: {
    type: 'boolean',
    default: false,
    constant: false,
    metas: { kind: 'static' }
  },
  myIntegerParam: {
    type: 'integer',
    min: 0,
    max: Infinity,
    default: 0,
    constant: false,
    metas: {
      kind: 'static',
      shortDescr: 'My First Integer Param',
      fullDescr: 'This parameter is my first integer parameter in this example.',
      unit: '%',
      step: 1,
      max: 100,
    }
  },
  // ...
};

class MyClass {
  constructor(options) {
    this.params = parameters(definitions, options);

    this.params.addListener((name, value, metas) => {
      // ...
    });

    this.params.addParamListener('myIntegerParam', (value, metas) => {
      // ...
    });
  }
}

const myInstance = new MyClass({ myIntegerParam: 42 });

const bValue = myInstance.params.get('myBooleanParam');
> false

const iValue = myInstance.params.get('myIntegerParam');
> 42

myInstance.params.set('myIntegerParam', definitions.myIntegerParam.min - 1);

API

ParameterBag

Bag of parameters. Main interface of the library

Kind: global class

parameterBag.getDefinitions() ⇒ Object

Return the given definitions along with the initialization values.

Kind: instance method of ParameterBag

parameterBag.getValues() ⇒ Object

Return values of all parameters as a flat object.

Kind: instance method of ParameterBag

parameterBag.get(name) ⇒ Mixed

Return the value of the given parameter.

Kind: instance method of ParameterBag
Returns: Mixed - - Value of the parameter.

| Param | Type | Description | | --- | --- | --- | | name | String | Name of the parameter. |

parameterBag.set(name, value, [forcePropagation]) ⇒ Mixed

Set the value of a parameter. If the value of the parameter is updated (aka if previous value is different from new value) all registered callbacks are registered.

Kind: instance method of ParameterBag
Returns: Mixed - - New value of the parameter.

| Param | Type | Default | Description | | --- | --- | --- | --- | | name | String | | Name of the parameter. | | value | Mixed | | Value of the parameter. | | [forcePropagation] | Boolean | false | if true, propagate value even if the value has not changed. |

parameterBag.has(name) ⇒ Boolean

Define if the name parameter exists or not.

Kind: instance method of ParameterBag

| Param | Type | Description | | --- | --- | --- | | name | String | Name of the parameter. |

parameterBag.reset([name])

Reset a parameter to its init value. Reset all parameters if no argument.

Kind: instance method of ParameterBag

| Param | Type | Default | Description | | --- | --- | --- | --- | | [name] | String | | Name of the parameter to reset. |

parameterBag.addListener(callback)

Add listener to all param updates.

Kind: instance method of ParameterBag

| Param | Type | Description | | --- | --- | --- | | callback | ParameterBag~listenerCallack | Listener to register. |

parameterBag.removeListener(callback)

Remove listener from all param changes.

Kind: instance method of ParameterBag

| Param | Type | Default | Description | | --- | --- | --- | --- | | callback | ParameterBag~listenerCallack | | Listener to remove. If null remove all listeners. |

parameterBag.addParamListener(name, callback, [trigger])

Add listener to a given param updates.

Kind: instance method of ParameterBag

| Param | Type | Default | Description | | --- | --- | --- | --- | | name | String | | Parameter name. | | callback | paramListenerCallack | | Function to apply when the value of the parameter changes. | | [trigger] | Boolean | false | Execute the callback immediately with current parameter value. |

parameterBag.removeParamListener(name, callback)

Remove listener from a given param updates.

Kind: instance method of ParameterBag

| Param | Type | Default | Description | | --- | --- | --- | --- | | name | String | | Parameter name. | | callback | paramListenerCallack | | Listener to remove. If null remove all listeners. |

ParameterBag~listenerCallback : function

Kind: inner typedef of ParameterBag

| Param | Type | Description | | --- | --- | --- | | name | String | Parameter name. | | value | Mixed | Updated value of the parameter. | | [meta=] | Object | Given meta data of the parameter. |

ParameterBag~paramListenerCallack : function

Kind: inner typedef of ParameterBag

| Param | Type | Description | | --- | --- | --- | | value | Mixed | Updated value of the parameter. | | [meta=] | Object | Given meta data of the parameter. |

parameters(definitions, values) ⇒ ParameterBag

Factory for the ParameterBag class.

Kind: global function

| Param | Type | Description | | --- | --- | --- | | definitions | [ 'Object' ].<String, paramDefinition> | Object describing the parameters. | | values | [ 'Object' ].<String, Mixed> | Initialization values for the parameters. |

parameters.defineType(typeName, parameterDefinition)

Register a new type for the parameters factory.

Kind: static method of parameters

| Param | Type | Description | | --- | --- | --- | | typeName | String | Value that will be available as the type of a param definition. | | parameterDefinition | parameterDefinition | Object describing the parameter. |

booleanDefinition : Object

Kind: global typedef
Properties

| Name | Type | Default | Description | | --- | --- | --- | --- | | type | String | 'boolean' | Define a boolean parameter. | | default | Boolean | | Default value of the parameter. | | constant | Boolean | false | Define if the parameter is constant. | | nullable | Boolean | false | Define if the parameter is nullable. | | event | Boolean | true | Define if the parameter is a volatile, e.g. set its value back to null after propagation of its value. When true, nullable is automatically set to true and default to null. | | metas | Object | {} | Optionnal metadata of the parameter. |

integerDefinition : Object

Kind: global typedef
Properties

| Name | Type | Default | Description | | --- | --- | --- | --- | | type | String | 'integer' | Define a boolean parameter. | | default | Mixed | | Default value of the parameter. | | min | Number | -Infinity | Minimum value of the parameter. | | max | Number | +Infinity | Maximum value of the parameter. | | constant | Boolean | false | Define if the parameter is constant. | | nullable | Boolean | false | Define if the parameter is nullable. | | event | Boolean | true | Define if the parameter is a volatile, e.g. set its value back to null after propagation of its value. When true, nullable is automatically set to true and default to null. | | metas | Object | {} | Optionnal metadata of the parameter. |

floatDefinition : Object

Kind: global typedef
Properties

| Name | Type | Default | Description | | --- | --- | --- | --- | | type | String | 'float' | Define a boolean parameter. | | default | Mixed | | Default value of the parameter. | | min | Number | -Infinity | Minimum value of the parameter. | | max | Number | +Infinity | Maximum value of the parameter. | | constant | Boolean | false | Define if the parameter is constant. | | nullable | Boolean | false | Define if the parameter is nullable. | | event | Boolean | true | Define if the parameter is a volatile, e.g. set its value back to null after propagation of its value. When true, nullable is automatically set to true and default to null. | | metas | Object | {} | Optionnal metadata of the parameter. |

stringDefinition : Object

Kind: global typedef
Properties

| Name | Type | Default | Description | | --- | --- | --- | --- | | type | String | 'string' | Define a boolean parameter. | | default | Mixed | | Default value of the parameter. | | constant | Boolean | false | Define if the parameter is constant. | | nullable | Boolean | false | Define if the parameter is nullable. | | event | Boolean | true | Define if the parameter is a volatile, e.g. set its value back to null after propagation of its value. When true, nullable is automatically set to true and default to null. | | metas | Object | {} | Optionnal metadata of the parameter. |

enumDefinition : Object

Kind: global typedef
Properties

| Name | Type | Default | Description | | --- | --- | --- | --- | | type | String | 'enum' | Define a boolean parameter. | | default | Mixed | | Default value of the parameter. | | list | Array | | Possible values of the parameter. | | constant | Boolean | false | Define if the parameter is constant. | | nullable | Boolean | false | Define if the parameter is nullable. | | event | Boolean | true | Define if the parameter is a volatile, e.g. set its value back to null after propagation of its value. When true, nullable is automatically set to true and default to null. | | metas | Object | {} | Optionnal metadata of the parameter. |

anyDefinition : Object

Kind: global typedef
Properties

| Name | Type | Default | Description | | --- | --- | --- | --- | | type | String | 'enum' | Define a parameter of any type. | | default | Mixed | | Default value of the parameter. | | constant | Boolean | false | Define if the parameter is constant. | | nullable | Boolean | false | Define if the parameter is nullable. | | event | Boolean | true | Define if the parameter is a volatile, e.g. set its value back to null after propagation of its value. When true, nullable is automatically set to true and default to null. | | metas | Object | {} | Optionnal metadata of the parameter. |

License

BSD-3-Clause