Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
mixin-deep
Advanced tools
Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. No dependencies.
The mixin-deep package is a utility for deeply mixing the properties of objects into the first object. It is useful for merging objects with nested properties, allowing for deep assignment and merging of object properties, arrays, and other nested structures.
Deep Merging of Objects
This feature allows for the deep merging of objects, including nested properties. The code sample demonstrates merging two objects with nested properties, resulting in a single object that combines both.
{"const mixinDeep = require('mixin-deep');\nconst object1 = { a: { b: { c: 1 } } };\nconst object2 = { a: { b: { d: 2 }, e: 3 } };\nconst result = mixinDeep(object1, object2);\nconsole.log(result); // Output: { a: { b: { c: 1, d: 2 }, e: 3 } }"}
Merging Arrays and Objects
This feature demonstrates how mixin-deep can merge both arrays and objects. The arrays are replaced rather than merged, while the objects are deeply merged.
{"const mixinDeep = require('mixin-deep');\nconst object1 = { a: [1, 2], b: { c: 1 } };\nconst object2 = { a: [3, 4], b: { d: 2 } };\nconst result = mixinDeep(object1, object2);\nconsole.log(result); // Output: { a: [3, 4], b: { c: 1, d: 2 } }"}
Lodash's merge function offers similar deep merging capabilities. It recursively merges own and inherited enumerable string keyed properties of source objects into the destination object. Compared to mixin-deep, lodash.merge is part of the larger lodash utility library, which provides a wide range of functions for manipulating objects, arrays, strings, etc.
The deepmerge package is another alternative that provides a simple and effective way to deeply merge objects in JavaScript. It is similar to mixin-deep but offers additional options for customizing the merge behavior, such as array merging strategies and cloning.
Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. No dependencies.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save mixin-deep
Please update to version 2.0.1 or later, a critical bug was fixed in that version.
const mixin = require('mixin-deep');
const res = mixin({ a: { foo: true } }, { a: { bar: true } }, { a: { baz: true } });
console.log(res);
//=> { a: { foo: true, bar: true, baz: true } }
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
You might also be interested in these projects:
extend
but recursively copies only the missing properties/values to the target object. | homepageCommits | Contributor |
---|---|
28 | jonschlinkert |
2 | doowb |
Jon Schlinkert
Copyright © 2019, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.8.0, on June 19, 2019.
FAQs
Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. No dependencies.
The npm package mixin-deep receives a total of 8,235,578 weekly downloads. As such, mixin-deep popularity was classified as popular.
We found that mixin-deep demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.