Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

apply-changes

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apply-changes

Apply Array/Object.observe format changesets to an object.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

apply-changes

Take a changes array in the format produced by Object.observe and Array.observe, and apply those changes to another object.

Example


var apply = require('apply-changes')

var localUser = {
  name: 'Original'
}

var remoteUser = {
  name: 'Original'
}

Object.observe(localUser, function(changes) {
  apply(remoteUser, changes)
  console.log(remoteUser.name) // 'Updated' 
  console.log(localUser.name === remoteUser.name) // true
})

localUser.name = 'Updated'

Why

Say you have an environment where Object.observe is implemented (e.g. node 0.11.x), and you want to easily replicate changes to another environment perhaps one without Object.observe (e.g. vintage 2013 web browser). In this scenario, you could send a raw stream of changes directly from Object.observe callback to observe-apply to have changes applied in the other environment.

Caveats

The recipient of the changes must be treated as read-only. apply-changes does not verify the state of recieving object matches the state of source object. Updates are likely to corrupt data if you change the recipient object.

Licence

MIT

Keywords

FAQs

Package last updated on 12 Nov 2013

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc