
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.