Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@dovyih/x-tree-diff
Advanced tools
A implementation for *X-tree Diff: An Efficient Change Detection Algorithm for Tree-structured Data*
A implementation for X-tree Diff: An Efficient Change Detection Algorithm for Tree-structured Data.
Paper link: https://link.springer.com/chapter/10.1007/3-540-45036-X_74.
npm install --save @dov/x-tree-diff
# or
yarn add @dov/x-tree-diff
import { XMLXTreeDiff } from '@dov/x-tree-diff'
const xmlStr = `<Meta>
<Author>yidafu(dov yih)</Author>
<Title>x-tree-diff</Title>
</Meta>`;
const xmlStr2 = `<Meta>
<Author>yidafu(dov yih)</Author>
<Name>x-tree-diff</Name>
</Meta>`;
const xmlDiff = new XMLXTreeDiff(xmlStr, xmlStr2);
const { oldTree, newTree } = xmlDiff.diff();
/*
oldTree:
<Meta op="0">
<Author op="0">yidafu(dov yih)</Author>
<Title op="2">x-tree-diff</Title>
</Meta>
newTree:
<Meta op="0">
<Author op="0">yidafu(dov yih)</Author>
<Name op="1">x-tree-diff</Name>
</Meta>
*/
if you want to implement your own Tree Struct Diff,you should implement XTreeDiff
class -- two method you need impl buildXTree
dumpXTree
.
abstract class XTreeDiff<T> {
public abstract buildXTree(rawTree: T): XTree;
public abstract dumpXTree(xTree: XTree): T;
}
see src/XMLXTreeDiff.ts
for more detail.
Implement:
XMLXTreeDiff
xml implHTMLXTreeDiff
Dom implOthor:
XTreeDiff
abstract class. Implemetn core X-Tree Diff
alogrithmXTree
core data structEditOption
, five option: NOP
,INS
,DEL
,UPD
,MOV
property | description |
---|---|
lable | tag name |
type | Element or Text Node |
value | text string value |
index | |
nMD | |
tMD | |
nPtr | |
Op | EditOption |
nId | |
pPtr | |
data | extra data field |
FAQs
A implementation for *X-tree Diff: An Efficient Change Detection Algorithm for Tree-structured Data*
We found that @dovyih/x-tree-diff demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.