Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
A diff for DOM elements, as client-side JavaScript code. Gets all modifications, insertions and removals between two DOM fragments.
This library allows the abstraction of differences between DOM elements as a "diff" object, representing the sequence of modifications that must be applied to one element in order to turn it into the other element. This diff is non-destructive, meaning that relocations of DOM nodes are preferred over remove-insert operations.
This project is licensed under the LGPL v. 3. For details see LICENSE.txt.
Check http://fiduswriter.github.io/diffDOM for demo and tests.
Include the diffDOM.js file in your HTML like this:
<script src="diffDOM.js">
Or like this in node/browserify:
var diffDOM = require("diff-dom");
Then create an instance of diffDOM within the javascript code:
dd = new diffDOM();
Now you can create a diff to get from dom elementA to dom elementB like this:
diff = dd.diff(elementA, elementB);
You can now apply this diff like this:
dd.apply(elementA, diff);
Now elementA will have been changed to be structurally equal to elementB.
Continuing on from the previous example, you can also undo a diff, like this:
dd.undo(elementA, diff);
Now elementA will be what it was like before applying the diff.
If you need to move diffs from one machine to another one, you will likely want to send the diffs through a websocket connection or as part of a form submit. In both cases you need to convert the diff to a json string.
To convert a diff to a json string which you can send over the network, do:
diffJson = JSON.stringify(diff);
On the receiving end you then need to unpack it like this:
diff = JSON.parse(diffJson);
Sometimes one may try to patch an elment without knowing whether the patch actually will apply cleanly. This should not be a problem. If diffDOM determines that a patch cannot be executed, it will simple return false. Else it will return true:
result = dd.apply(element, diff);
if (result) {
console.log('no problem!');
} else {
console.log('diff could not be applied');
}
diffDOM does not include merging for changes to text nodes. However, it includes hooks so that you can add more advanced handling. Simple overwrite the textDiff function of the diffDOM instance. The functions TEXTDIFF and TEXTPATCH need to be defined in the code:
dd = new diffDOM();
dd.textDiff = function (node, currentValue, expectedValue, newValue) {
if (currentValue===expectedValue) {
// The text node contains the text we expect it to contain, so we simple change the text of it to the new value.
node.data = newValue;
} else {
// The text node currently does not contain what we expected it to contain, so we need to merge.
difference = TEXTDIFF(expectedValue, currentValue);
node.data = TEXTPATCH(newValue, difference);
}
return true;
};
For debugging you might want to set a max number of diff changes between two elements before diffDOM gives up. To allow for a maximum of 500 differences between elements when diffing, initialize diffDOM like this:
dd = new diffDOM(true, 500);
FAQs
A diff for DOM elements, as client-side JavaScript code. Gets all modifications, insertions and removals between two DOM fragments.
We found that diff-dom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.