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

observable-options

v1.4.3

Published

Manage options and observe changes easily.

Downloads

6

Readme

Observable Options

A simple library for defining and managing options. It lets you register options, nest options, observe changes, reset to default value and define alias names.

npm badge

Install

npm install --save-dev observable-options

API

Register options

const options = new Observable();

// registers new option in options list and sets a default value: `John`
options.register("name", "John");

// registers multiple and nested options
options.register({
    name: "John",
    familyName: "Doe",
    age: 34,
    car: {
        name: "Mini",
        color: "Red",
        wheels: 4
    }
});

Set and get values

// Change age value
options.set("age", 40);

// Change nested option value
options.set("car.color", "blue");

// get value
options.get("age");
options.get("car.color");

Observe changes

options.observe("name", (name, value) => {
    console.log(name, value);
});

options.observe("car.color", (name, value) => {
    console.log(name, value);
});

// observes any changes in options
options.observe("*", (name, value) => {
    console.log(name, value);
});

// observes any changes in car
options.observe("car", (name, value) => {
    console.log(name, value);
});

// add and remove observer
let callback = (name, value) => {
    console.log(name, value);
};

options.observe("car.name", callback);

// remove observer
options.dontObserve("car.name", callback);

// Observes multiple options
options.observe(["car.name", "name", "familyName"], callback);

// remove observer
options.dontObserve(["car.name", "name", "familyName"], callback);

Disable observers on set

// starts denying observers
options.internalChange();

options.set("name", "Johnny");
options.set("age", 54);

options.endInternalChange();

// denies observer on set
options.set("name", "bob", true);

Reset to default

// resets age to default
options.reset("age"); // 34

// resets a nested option
options.reset("car.color"); // red

// resets all options of car
options.reset("car");

// resets all options
options.reset("*");

Inject values

Sets multiple values to the options even if some of the options were not registered yet. It is useful when you need to set all options before any other action in your script.

// injects new values to the options
let values = {
    name: "Jane",
    age: 26,
    vegetarian: true,
    car: {
        name: "Fiat 500",
        color: "blue"
    }
};

options.inject(values);

// you can register "vegetarian" even later after value injection
options.register("vegetarian", false);

Alias

options.alias("color", "car.color");
options.alias("surname", "familyName");

// set and get value by alias
options.set("color", "white");
options.get("color");

options.set("surname", "Roe");

// aliases are supported for value injection too
options.register("postalCode", 0);
options.alias("zipCode", "postalCode");

let values = {
    name: "Jane",
    zipCode: 23301
};

options.inject(values);

Check for option existence

options.has("name"); // true
options.has("car.color"); // true
options.has("gender"); // false