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

deepr

v1.2.2

Published

Deep recursive object merge with superpowers

Downloads

247

Readme

Deepr

Zero dependency, deep recursive object merge with built-in API for object mutations.

Installation

npm install deepr --save

Quickstart

const deepr = require('deepr');

const obj = {
  string: 'hello',
  object: {
    bool: true,
    nested: {
      number: 1,
      array: [1, 2, 3]
    }
  },
  array: ['A', 'B', 'C']
};

const result = deepr.merge(obj, {
  string: 'deepr',
  newkey: 'newvalue',
  object: {
    bool: false,
    nested: {
      number: '&+=1',
      array: '&delete'
    }
  },
  array: ['&push', 'D']
});

/*
  result...
  {
    string: 'deepr',
    newkey: 'newvalue',
    object: {
      bool: false,
      nested: {
        number: 2
      }
    },
    array: ['A', 'B', 'C', 'D']
  }
*/

Primitives

To update or set a primitive, simply set the new value.

const obj = {
  string: 'hello',
  bool: false,
  nested: {
    number: 1
  }
};

const result = deepr.merge(obj, {
  string: 'deepr',
  newkey: 'newvalue',
  bool: true,
  nested: {
    number: 2
  },
});

/*
  result...
  {
    string: 'deepr',
    newkey: 'newvalue',
    bool: true,
    nested: {
      number: 2
    }
  }
*/

Objects

To overwrite an existing object use the &= operator to signal the change.

const obj = {
  nested: {
    key: 'value'
  }
};

const result = deepr.merge(obj, {
  nested: ['&=', { newkey: 'newvalue' }]
});

/*
  result...
  {
    nested: {
      newkey: 'newvalue'
    }
  }
*/

Immutability

By default, Deepr will simply update the original object. To leave the original object untouched, simply pass the clone option as true.

const obj = {
  string: 'hello',
  object: { key: 'value' },
  array: [1, 2, 3]
};

const result = deepr.merge(obj, {
  string: 'deepr',
  object: { key: 'newval' },
  array: ['&push', 4]
}, true);

/*
  obj...
  {
    string: 'hello',
    object: {
      key: 'value'
    },
    array: [ 1, 2, 3 ]
  }

  result...
  {
    string: 'deepr',
    object: {
      key: 'newvalue'
    },
    array: [ 1, 2, 3, 4 ]
  }
*/

Arrays

To update an existing array use the &= operator to signal the change.

const obj = {
  array: ['A', 'B', 'C']
};

const result = deepr.merge(obj, {
  array: ['&=', [1, 2, 3]]
});

/*
  result...
  {
    array: [1, 2, 3]
  }
*/

Array Functions

Deepr includes common array functions like, push, pop, shift, etc. To manipulate an existing array, use &<function> to signal a change.

const obj = {
  push: ['A', 'B', 'C'],
  shift: ['A', 'B', 'C'],
  unshift: ['A', 'B', 'C'],
  concat: ['A', 'B', 'C'],
  reverse: ['A', 'B', 'C'],
  slice: ['A', 'B', 'C'],
  pop: ['A', 'B', 'C']
};

const result = deepr.merge(obj, {
  push: ['&push', 'D'],
  shift: ['&shift'],
  unshift: ['&unshift', 'Z'],
  concat: ['&concat', ['D', 'E']],
  reverse: ['&reverse'],
  slice: ['&splice', [0, 1]],
  pop: ['&pop'],
});

/*
  result...
  {
    push: [ 'A', 'B', 'C', 'D' ],
    shift: [ 'B', 'C' ],
    unshift: [ 'Z', 'A', 'B', 'C' ],
    concat: [ 'A', 'B', 'C', 'D', 'E' ],
    reverse: [ 'C', 'B' , 'A'],
    slice: [ 'A' ],
    pop: [ 'A', 'B' ]
  }
*/

Delete

To delete a key from an object use &delete.

const obj = {
  object: { key: 'value' },
  primitive: 'string'
};

const result = deepr.merge(obj, {
  object: { key: '&delete' },
  primitive: '&delete'
});

/*
  result...
  {
    object: {}
  }
*/

Setters

Set the value to null, empty object or empty array. Note that each original type was overwritten.

&=null set the value to null &={} set the value to an empty object &=[] set the value to an empty array

const obj = {
  primitive: 'string',
  object: { key: 'val' },
  array: [1, 2, 3]
};

const result = deepr.merge(obj, {
  primitive: '&=[]',
  object: '&=null',
  array: '&={}'
});

/*
  result...
  {
    primitive: [],
    object: null,
    array: {},
  }
*/