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

providence

v0.7.1

Published

Reference a sub-structure of any data structure

Downloads

34

Readme

providence Build Status

Reference a sub-structure of any data structure.

Usage

$ npm install --save providence

Extensions

Providence is intended to be extended to fit to your needs.

  • Probe observable cursors
  • minitrue Probe cursor factory that read/write to a single source of truth

API

Providence(options)

Creates a new Providence cursor instance. May be called without the new keyword.

options: May either be a plain object or an Immutable.Map.

const Providence = require('providence');

const cursor = new Providence({
    root: {
        data: Immutable.Map()
    }
});

const cursor2 = Providence({
    root: {
        data: Immutable.Map()
    }
});
options

options.root.data

The "boxed" root data structure. The user must provide this.

options.path

An array of the path/keypath.

options.root.unbox

Function that will given value at options.root.data, and "unbox" into the value used in deref()/valueOf(), update(), and delete()/remove().

By default this is an identity function (e.g. function(x) {return x;}).

NOTE: It's expected that this is the inverse of options.root.box.

options.root.box

Function that will "box" a value back into a new value that will be written into options.root.data.

This is used for updating/modifying values done through update() and delete() methods.

By default this is an identity function (e.g. function(x) {return x;}).

NOTE: It's expected that this is the inverse of options.root.unbox.

options.getIn

A higher order function, which given the unboxed root data, shall return a function, getIn, with the signature: getIn(path[, notSetValue]).

This is used internally for deref() and update().

By default this is:

function _defaultGetIn(rootData) {
    return rootData.getIn.bind(rootData);
}

options.setIn

A higher order function, which given the unboxed root data, shall return a function, setIn, with the signature: setIn(path, newvalue).

This is used internally for update().

By default this is:

function _defaultSetIn(rootData) {
    return rootData.setIn.bind(rootData);
}

options.deleteIn

A higher order function, which given the unboxed root data, shall return a function, deleteIn, with the signature: deleteIn(path).

This is used internally for delete().

function _defaultDeleteIn(rootData) {
    return rootData.deleteIn.bind(rootData);
}

options.onUpdate

Called when there is a new value change in either update() or delete() operations.

options._onUpdate

Called when there is a new value change in either update() or delete() operations.

If you're extending the Providence constructor and want to subscribe to changes of either update() or delete() operations; set your function options._onUpdate.

NOTE: The end-user shall not set their function at options._onUpdate, and should instead set it at options.onUpdate.

Providence.prototype.constructor

By default, this points to Providence. This is If you're extending Providence, ensure that constructor is set: AnotherConstructor.prototype.constructor = AnotherConstructor.

Providence.prototype.toString()

Returns string representation of this.deref().

Providence.prototype.valueOf([notSetValue])

Alias of Providence.prototype.deref([notSetValue]).

Providence.prototype.deref([notSetValue])

Dereference by unboxing the root data and getting the value at path.

If path happens to not exist, notSetValue is, instead, returned. If notSetValue is not provided, it becomes value: void 0.

Providence.prototype.exists()

Return true if a path exists within the unboxed root data.

Providence.prototype.path()

Returns the array representation of the path.

Providence.prototype.options()

Returns providence cursor's options which will be an Immutable.Map object. It is safe to modify this object since it is an Immutable Map object; and any changes will not reflect back to the originating cursor, unless it is used as the new options.

Providence.prototype.new(newOptions)

Create a new Providence object with options via this instance.

Providence.prototype.cursor([keyValue])

When given no arguments, return itself.

By default, this is the same behaviour as cursor() method for immutable-js cursors:

  • Returns a sub-cursor following the path keyValue starting from this cursor.
  • If keyValue is not an array, an array containing keyValue is instead used.
Providence.prototype.update([notSetValue,] updater)

Update value in the unboxed root data at path using the updater function. If the path exists, updater is called using:

  • the value at path
  • unboxed root data
  • boxed root data

If path doesn't exist, notSetValue is used as the initial value. If notSetValue is not defined, it has value void 0.

If updater returns the same value the value at path (or notSetValue), then no changes has truly occurred, and the current cursor is instead returned.

Otherwise, the new value is replaced at path of the unboxed root data, and a new providence cursor is returned with the new boxed root data. In addition, any defined functions at onUpdate and/or _onUpdate within options will be called with the following:

  • options
  • cursor path
  • new unboxed root data with the new value
  • previous unboxed root data
Providence.prototype.delete()

Delete value at path.

If the new unboxed root data is the same as the previous, original unboxed root data, then the current cursor is returned.

Otherwise, any defined functions at onUpdate and/or _onUpdate within options will be called with the following:

  • options
  • cursor path
  • new unboxed root data with the new value
  • previous unboxed root data

In addition, the new providence cursor containing the new unboxed root data will be returned.

Providence.prototype.remove()

Alias of Providence.prototype.delete().

License

MIT