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

rexjs

v0.2.12

Published

A library for smart variables and change notification.

Downloads

82

Readme

rexjs - framework-agnostic data binding

rexjs is a javascript library for reactive programming, data-binding, and value propagation that can be used from any framework or library in any context on any platform.

If you're wondering what that means exactly, read on.

The Problem

A modern web application (or any application, really) is composed (or should be composed) of a tree of interlinked components (or, in some cases, a graph of them). This is true whether you're writing it in React, Angular, or some other well-organized framework. It is definitely a Good Thing(tm).

Each component is generally responsible for working with or displaying some subset of the data of the whole tree, such as a text editor responsible for editting and displaying some text and a more complex EmployeeEditor that lets you edit the details of a whole Employee object.

interface Employee {
	id : number;
	name : string;
}

Value propagation, then, is the art of moving values from parent components to child components, and sometimes between sibling components (if those exist), and synchronizing them when one of the components instigates a change (e.g. due to user interaction).

With the increasing complexity of web applications, value propagation and change notification requires an increasingly large amount of boilerplate, which can be a potential source of bugs and other issues. You can probably imagine how much of this boilerplate is required when confronted with a diagram like this:

Employee-Company schema

One chain if propagation looks like this:

Company->string propagation

rexjs makes value propagation and change notification a simple and elegant affair. It works using smart variables called Rexes that you can transform using special functions.

Data binding

Data binding is when you take that final value in the above example (a string) and synchronize it with another existing object, like a textbox, so that the textbox and the string are identical.

This is similar to the parent-child relationship above, in that a change in one should cause a change in the other.

Not all frameworks use data binding. React, for example, works very well without it, because every change in an input element causes the whole view to be invalidated. Instead of needed code to synchronize a textbox and an Employee's name, the value is eventually passed down again.

rexjs supports data binding, but it is very useful without it, as value propagation is an issue in React as well as in other frameworks.

Rexes

rexjs uses smart variables called Rexes to help propagate a value. It lets you apply complex transformations on it while retaining the link to the original, so that when one component along the chain of dependencies causes a change, all the components are notified correctly.

The most basic Rex is the var_ type, which is backed by a variable. Here are some examples of how it can be used:

let var_ = Rex.var_(1);
var_.value = 5;
let x = var_.value;

The only thing that sets Var apart is that it has no parents.

Using var_ as a base, you can apply Rex transformations on it by calling other methods ending with an underscore to get Rex objects that rely on it:

//creates a RexConvert that transforms the number into a string and back again.
let string_ = var_.convert_(x => x.toString(), x => Number.parseFloat(x));

Here we've created a chain of Rexes that looks like this:

number_ <=> string_

Now if we update either of the two, the other will also be updated automatically:

number_.value = 5;
expect(string_.value).toBe("5");
string_.value = "10";
expect(number_.value).toBe(10);

We can construct more and more elaborate chains of Rexes, or even entire trees of them. We can add another Rex as a child of number_:

let doubled_ = number_.convert(x => x * 2, x => x / 2);
doubled_.value = 10;
expect(number_.value).toBe(5);
expect(string_.value).toBe("5");