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

kurtsore-no-dev

v0.1.3

Published

A cursor implementation for focusing on atoms with immutable data structures

Downloads

5

Readme

kurtsore

Travis Badge

A cursor implementation in JavaScript for focusing on atoms with immutable data structures.

Installation

$ npm install kurtsore

Usage

Let's say you are managing some state with an Atom and you have a deeply nested, associative immutable data structure on it. Managing it with a bare atom can get tedious and cursors allow you to focus on a substructure of the atom. The most basic cursor will point to the root of the atom:

var a = require("atomo"),
    k = require("kurtsore"),
    i = require("immutable");

var atom = a.atom(i.fromJS({
    a: {
        b: {
            c: {
                d: [0, 1, 2]
            }
        }
    }
}));
var cursor = k.cursor(a);

i.is(cursor.deref(), atom.deref());
//=> true

Focusing on keys and paths

However, cursors can point to keys and paths in the Atom they are constructed from:

var cursorA = k.cursor(a, 'a');

i.is(cursorA.deref(), atom.deref().get('a'));
//=> true

Cursors can be derived from others, refining the path they point to:

var cursorC = cursorA.derive(['b', 'c']);

i.is(cursorC.deref(), atom.deref().getIn(['a', 'b', 'c']));
//=> true

Atomic operations

Cursor instances support Atom's deref method as you have seen in the above examples, but they also implement swap so you can apply a function to the focused structure of the original atom:

var cursorB = k.cursor(atom, ['a', 'b']);

cursorB.swap(function(st, x, y){
    return st.set('c', x + y);
}, 21, 21);

i.is(cursorB.deref(), i.fromJS({c: 42}))
//=> true
i.is(atom.deref(), i.fromJS({a: {b: {c: 42}}}));
//=> true

If you instead want to replace the focused structure, you can use reset:

atom.reset(i.fromJS(
    a: {
        b: {
            c: {
                d: [0, 1, 2]
            }
        }
    }

));

var cursorD1 = k.cursor(atom, ['a', 'b', 'c', 'd', 1]);
cursorD1.deref();
//=> 1

cursorD1.reset(42);
i.is(atom.deref(), i.fromJS(
    a: {
        b: {
            c: {
                d: [0, 42, 2]
                //      ^
                //      |_ notice the change
            }
        }
    }
));
//=> true

Snapshots

Cursors remember a snapshot of the focused structure when they were created, this helps libraries like react-kurtsore implement efficient shouldComponentUpdate in React components.

atom.reset(i.fromJS(
    a: {
        b: {
            c: {
                d: [0, 1, 2]
            }
        }
    }

));

var cursorB = k.cursor(atom, ['a', 'b']);
i.is(cursorB.snapshot, i.fromJS({c: {d: [0, 1, 2]}}));
//=> true

cursorB.reset(42);
var newCursorB = cursorB.derive();
i.is(newCursorB.snapshot, 42);
//=> true

License

BSD 2-clause license, Copyright 2015 Alejandro Gómez.