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

obj-delta

v0.0.6

Published

A diff object that applies changes to an object in a way that share common structure where possible

Downloads

11

Readme

obj-delta

obj-delta helps you to apply a set of changes to an object. It always generates a new object rather than mutating the original one. But it reuses fragments of the original object (a simple structural sharing).

Using the library

You can import the library from npm and require it:

var Delta = require('obj-delta');

You can change an object like the following:

var data = {
  heroes: [
    { name: 'Susan Storm', nickname: 'The invincible woman' },
    { name: 'Jonathan Storm', handle: 'The human torch' },
    { name: 'Reed Richards', handle: 'Mr Fantastic' },
    { name: 'Benjamin Grimm', handle: 'The thing' },
    { name: 'Viktor Van Doom', handle: 'Doctor Doom' },
  ]
};

You can create a delta object like this:

var delta = Delta(); // or new Delta();
delta.set('heroes[0].nickname', 'The invisible woman');
delta.del('heroes[4]');

Every command is chainable, so you can write:

var delta = Delta()
  .set('heroes[0].nickname', 'The invisible woman');
  .del('heroes[4]');

Every command is called on a path. The path uses the same syntax used in lodash. It can be a string or an array:

'heroes[0].nickname' is equivalent to ['heroes', 0, 'nickname']

You can apply the change using the "apply" method:

var correctedData = delta.apply(data);

The original object: "data" does not mutate.

data === correctedData // false

data.heroes === correctedData.heroes // false
data.heroes[0] === correctedData.heroes[0] // false
data.heroes[0].name === correctedData.heroes[0].name // true, quite obvious
data.heroes[0].nickname === correctedData.heroes[0].nickname // false, quite obvious

data.heroes[1] === correctedData.heroes[1] // true
data.heroes[2] === correctedData.heroes[2] // true
data.heroes[3] === correctedData.heroes[3] // true

correctedData.heroes[4] // is undefined

You can notice that correctedData reuses references to the data object where they are not changed.

Serializing/deserializing

delta can be serialized:

var json = JSON.stringify(delta);

and deserialized:

var newDelta = Delta(JSON.parse(json));

In this way the list of changes can be serialized, sent through the network, deserialized and applied remotely. There is an important exception, all commands taking a function (transform, filter, map) can't be serialized. JSON.stringify will fire an exception if you used one of them.

Commands

Here's a complete list of all commands:

  • set
  • del
  • transform
  • map
  • filter
  • append
  • prepend
  • insert
  • merge
  • slice
  • removeKeys
  • removeIndexes
  • removeValues

set

Sets a value. If the path doesn't exist, it creates the object/arrays necessary and then sets the value.

delta()
  .set('greetings/hello', 'world')
  .apply({ greetings: {} });

// { greetings: { hello: 'world' } }

del

Removes a value.

delta()
  .del('greetings/hello')
  .apply({ greetings: { hello: 'world'} });

// { greetings: { } }

If used on an array index, it will compact the array after removing the item.

delta()
  .del('greetings/hello[1]')
  .apply({ greetings: { hello: ['world', 'mars', 'sun']} });

// { greetings: { hello: ['world', 'sun']} }

Array are compacted at the end, after all deletions are applied.

transform

It replaces an item using a function that runs on the original value.

delta()
  .transform('greetings/hello', (greeting) => greeting.toUpperCase())
  .apply({ greetings: { hello: 'world'} });

// { greetings: { hello: 'WORLD' } }

If the original item is undefined, it will create the item. NOTE: you can't serialize an object if you use this command.

map

It replaces an array of items using a function that runs on the original value. The function takes (item, index, array) as arguments.

delta()
  .map('greetings', (greeting) => greeting.toUpperCase())
  .apply({ greetings: ['hello', 'hola', 'ciao'] });

// { greetings: ['HELLO', 'HOLA', 'CIAO'] }

It runs over objects too, replacing all object values. In this case the function takes (value, key, object) as arguments.

delta()
  .map('greetings', (greeting) => greeting.toUpperCase())
  .apply({ greetings: { eng: 'hello', es: 'hola', it: 'ciao' } });

// { greetings: { eng: 'HELLO', es: 'HOLA', it: 'CIAO' } }

If the path is pointing to an item that is not an object or an array, this function works the same as the transform.

filter

It filters an array of items using a function. If the function returns a truthy value the item will be included. The function takes (item, index, array) as arguments.

delta()
  .filter('greetings', (greeting) => greeting.startsWith('h'))
  .apply({ greetings: ['hello', 'hola', 'ciao'] });

// { greetings: ['hello', 'hola'] }

It runs over objects too, filtering key/value pairs. In this case the function takes (value, key, object) as arguments.

delta()
  .filter('greetings', (greeting) => greeting.startsWith('h'))
  .apply({ greetings: { eng: 'hello', es: 'hola', it: 'ciao' } });

// { greetings: { eng: 'hello', es: 'hola' } }

If the path is pointing to an item that is not an object or an array, this function will run on that item. If it returns false the item will be undefined.

append

It appends one or more items to an array.

delta()
  .append('greetings', 'ciao')
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['hello', 'hola', 'ciao'] }

delta()
  .append('greetings', ['ciao', 'hi'])
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['hello', 'hola', 'ciao', 'hi'] }

If the original item is not an array, it will be transformed in an array.

delta()
  .append('greetings', 'ciao')
  .apply({ greetings: 'hello' });

// { greetings: ['hello', 'ciao'] }

prepend

It prepends one or more items to an array.

delta()
  .prepend('greetings', 'ciao')
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['ciao', 'hello', 'hola'] }

delta()
  .prepend('greetings', ['ciao', 'hi'])
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['ciao', 'hi', 'hello', 'hola'] }

If the original item is not an array, it will be transformed in an array.

delta()
  .prepend('greetings', 'ciao')
  .apply({ greetings: 'hello' });

// { greetings: ['ciao', 'hello'] }

insert

It inserts one or more items in an array.

delta()
  .insert('greetings', 'ciao', 1) // 1 is the index
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['hello', 'ciao', 'hola'] }

delta()
  .insert('greetings', ['ciao', 'hi'], 1) // 1 is the index
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['hello', 'ciao', 'hi', 'hola'] }

If the original item is not an array, it will be transformed in an array and behave just like prepend ( ignoring the index ).

delta()
  .insert('greetings', 'ciao', 1) // 1 is the index
  .apply({ greetings: 'hello' });

// { greetings: ['ciao', 'hello'] }

By default the index is 0.

delta()
  .insert('greetings', 'ciao', 1) // 1 is the index
  .apply({ greetings: ['hello', 'hola'] });

// { greetings: ['hello', 'ciao', 'hola'] }

merge

It merges an object on top of an existing one.

delta()
  .merge('greetings', { eng: 'hello', it: 'ciao' })
  .apply({ greetings: { eng: 'hi', es: 'hola' } });

// { greetings: { eng: 'hello', es: 'hola', it: 'ciao' } }

If the original element is not an object it returns that unchanged.

slice

It slices an array. Same api as Array.prototype.slice.

delta()
  .slice('greetings', 1, -1)
  .apply({ greetings: ['hello', 'hola', 'ciao', 'hi'] });

// { greetings: ['hola', 'ciao'] }

If the original element is not an array it returns that unchanged.

removeKeys

It removes all items from an object with a certain key.

delta()
  .removeKeys('greetings', 'eng')
  .apply({ greetings: { eng: 'hello', es: 'hola', it: 'ciao' } });

// { greetings: { es: 'hola', it: 'ciao' } }

It can also remove more than one key. If a key doesn't exist, is ignored.

delta()
  .removeKeys('greetings', ['eng', 'es', 'rus'])
  .apply({ greetings: { eng: 'hello', es: 'hola', it: 'ciao' } });

// { greetings: { it: 'ciao' } }

removeIndexes

It removes all items from an array with a certain index.

delta()
  .removeIndexes('greetings', 1)
  .apply({ greetings: ['hello', 'hola', 'ciao'] });

// { greetings: ['hello', 'ciao'] }

It can also remove more than one index. If an index doesn't exist, is ignored.

delta()
  .removeIndexes('greetings', [1, 10])
  .apply({ greetings: ['hello', 'hola', 'ciao'] });

// { greetings: ['hello', 'ciao'] }

removeValues

It removes all items from an array or object with a certain value.

delta()
  .removeValues('greetings', 'hola')
  .apply({ greetings: ['hello', 'hola', 'ciao'] });

// { greetings: ['hello', 'ciao'] }

It can also remove more than one value. If the value doesn't exist, is ignored.

delta()
  .removeValues('greetings', ['hola', 'hi'])
  .apply({ greetings: ['hello', 'hola', 'ciao'] });

// { greetings: ['hello', 'ciao'] }

An example with an object:

delta()
  .removeValues('greetings', ['hello', 'hola'])
  .apply({ greetings: { eng: 'hello', es: 'hola', it: 'ciao' } });

// { greetings: { it: 'ciao' } }