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

extendmerge

v0.5.1

Published

deep extends objects and concatenates arrays

Downloads

5

Readme

ExtendMerge

=============

Yet another extend function. Yes, I did think of crappier names, but they were all taken. This is the same as all the other extend functions you've ever seen, with a few differences:

  • there is no extend(true,...: extends are always deep.
  • arrays are concatenated by default
  • you can 'extend' strings by using #{_}
  • you can swap sub-functions to modify how objects are treated. For example, changing the extend.arrays function will modify how arrays are treated; so you can, for example, keep most of the functionality, but add in your own custom array merging logic.

Usage

npm install --save extendmerge

var extend = require('extendmerge');
var obj = extend({},{prop:'val'},{prop:'will overwrite val'});

Extending functions

The functions below are meant to be modified by the user in order to customize behaviour:

  • extend.objects(o1,o2): merges two objects. You are guaranteed that o1 is an object, but o2 can be anything.
  • extend.arrays(o1,o2): merges two arrays. You are guaranteed that o1 is an array, but o2 can be anything
  • extend.strings(o1,o2): merges two strings. You are guaranteed that o1 is a string, but o2 can be anything
  • extend.numbers(o1,o2): merges two numbers. You are guaranteed that o1 is a number, but o2 can be anything.

Additionally, you can also change the regexes used for string extension:

  • extend.regex: is used for string extension (see below)
  • extend.populateRegex: is used when populating an object (see below)

You also have access to the convenience library dis, available as extend.is.


Convenience Functions

extend.walk(Object:obj,Function:fn)

runs the function for every node of the object. Begins deep and goes back to the root. The function has a signature of function(property,type,NOCHANGE){return NOCHANGE} where property is the value, type is the property type (string, array...), and NOCHANGE is a constant that you must return if you don't want to change the object.

get([String|Array]:path,Object:obj[,String:delimiter])

Gets a property of the provided object obj by path. Path delimiter defaults to '.', but you can set it to something else if you'd like. You can also pass an array, in which case the delimiter is not used.
You can also use '*' and '**' to be more vague in the path resolution.
so for the object:

    var obj = {
        a:{
            b:{
                c:{
                    d:'text'
                }
            }
        }
    }

    //valid paths:
    extend.get('a.b.c.d',obj);
    extend.get('*.*.*.d',obj);
    extend.get('**.d',obj)

If there is more than one d key, you would get the first one found.

populate(obj)

will replace all text instances like so #{a.b.c.d} with the closest value that can be found; Globbing works here too.


Testing

Do check out the tests, they explain much better than this document can.

npm install mocha chai

then, run mocha in the main dir.


License

MIT