Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nullivex/object-manage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4a47d694c3fef5e5a165bcbc85a484efa12c9c3f
Choose a base ref
...
head repository: nullivex/object-manage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d27d842692a1d8dc2ad3cc35591b2b069affb968
Choose a head ref
  • 5 commits
  • 7 files changed
  • 2 contributors

Commits on Jan 10, 2017

  1. Copy the full SHA
    6e56530 View commit details

Commits on Jul 19, 2017

  1. Copy the full SHA
    b3a742d View commit details

Commits on Sep 20, 2018

  1. * Update dependencies

    * Fix security vulnerabilities in dependencies
    * Node requirement changes to 4.x or greater
    nullivex committed Sep 20, 2018
    Copy the full SHA
    5ed5d61 View commit details
  2. * Remove the ability to use merge-recursive from the core package a…

    …s it
    
    contains a security vulnerability and the author has not published a fix.
    nullivex committed Sep 20, 2018
    Copy the full SHA
    844a43a View commit details

Commits on Mar 11, 2020

  1. Update notes and dependencies.

    Add Kado notice.
    nullivex committed Mar 11, 2020
    Copy the full SHA
    d27d842 View commit details
Showing with 1,081 additions and 58 deletions.
  1. +2 −4 .travis.yml
  2. +41 −23 README.md
  3. +1 −12 lib/ObjectManage.js
  4. +1,022 −0 package-lock.json
  5. +11 −12 package.json
  6. +0 −7 test/ObjectManage.test.js
  7. +4 −0 test/mocha.opts
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
language: node_js
sudo: false
node_js:
- "0.8"
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
- "7"
before_install: if [[ `npm -v` != 4* ]]; then npm i -g npm@4; fi
- "8"
services:
- redis-server
64 changes: 41 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
object-manage [![Build Status](https://travis-ci.org/nullivex/object-manage.png?branch=master)](https://travis-ci.org/nullivex/object-manage)
=============

A library for managing javascript objects and offering common getter, setter, merge support.
## Kado

Works great for managing config objects and libraries that have options.
STOP AND READ THIS

## > 0.8.x
A new package is available to handle all your JavaScript needs.
See [kado.org](https://kado.org) for details.

As of 0.8.x the API was completely reimagined so that ObjectManage would only extend the object.
Allowing it to be passed and used like any other object but with extended functionality.
## Summary

This breaks all implementations of the 0.7.x branch which has been split to be maintained separately.
A library for managing javascript objects and offering common getter, setter, merge support.

The main change is that the `ObjectManage.data` storage object has been moved to the root and all the
extension methods are now prefixed with `$` eg: `var obj = new ObjectManage(); obj.$get('foo');`
Works great for managing config objects and libraries that have options.

## Installation

@@ -330,21 +329,7 @@ Using the driver
var obj = new ObjectManage().$storage(new myStorageDriver())
```

## Switching Merge Package

In order to make object-manage more performance friendly in smaller environments
the merger can easily be switched between **object-merge** for **merge-recursive**.
**merge-recursive** will only merge pointers and thus when the object-manage instance
is modified the original objects will be as well. We choose **object-merge** as the
default because it will decouple from the objects being merged in. This comes with a
performance and memory cost.

To use **merge-recursive**

```js
var ObjectManage = require('object-manage')
ObjectManage.prototype.$merge = ObjectManage.prototype.$mergeRecursive
```
## Implement Custom Merge Package

It is also possible to implement one's own merging function.

@@ -749,6 +734,27 @@ obj.$load(overlyDeepObject)

## Changelog

### 1.1.1
* Update the following dependencies
* redis 2.8.x → 3.0.x
* uuid 3.3.x → 7.0.x
* chai 4.1.x → 4.2.x
* mocha 5.2.x → 7.1.x
* Add notice about Kado for future use.

### 1.1.0
* Update dependencies
* Fix security vulnerabilities in dependencies
* Node requirement changes to 4.x or greater
* Remove the ability to use `merge-recursive` from the core package as it
contains a security vulnerability and the author has not published a fix.

### 1.0.0
* Update dependencies
* Updated support for latest Node.js versions
* Dropped support for Node.js < 4.x (however older versions should still work!)
* Releasing 1.0.0 to prove the long term stability of this package.

### 0.8.1
* Update dependencies
* Test against all major node versions
@@ -762,6 +768,18 @@ obj.$load(overlyDeepObject)
* Overall code cleanup with gjslint standards
* Addition of several static helpers such as: $strip, $extract, $clone, $extend, $countDepth

#### Upgrade Notes

##### > 0.8.x

As of 0.8.x the API was completely reimagined so that ObjectManage would only extend the object.
Allowing it to be passed and used like any other object but with extended functionality.

This breaks all implementations of the 0.7.x branch which has been split to be maintained separately.

The main change is that the `ObjectManage.data` storage object has been moved to the root and all the
extension methods are now prefixed with `$` eg: `var obj = new ObjectManage(); obj.$get('foo');`

### 0.7.1
* Fixes #3 where object length would be mistaken for object depth. Also uses a quicker depth counting function.

13 changes: 1 addition & 12 deletions lib/ObjectManage.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';
var EventEmitter = require('events').EventEmitter
var uuid = require('uuid')
var mergeRecursive = require('merge-recursive')

var objectMerge = require('object-merge')

var Validate = require('./Validate')
@@ -525,17 +525,6 @@ ObjectManage.prototype.$objectMerge = function(obj1,obj2){
}


/**
* Merge implementation using merge-recursive
* @param {object} obj1
* @param {object} obj2
* @return {object}
*/
ObjectManage.prototype.$mergeRecursive = function(obj1,obj2){
return mergeRecursive.recursive(obj1,obj2)
}


/**
* Merge prototype allowed to be overirden
* @type {object}
Loading