• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

kbadk/json0-ot-diff: Finds differences between two JSON object and generates ope ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

kbadk/json0-ot-diff

开源软件地址:

https://github.com/kbadk/json0-ot-diff

开源编程语言:

JavaScript 100.0%

开源软件介绍:

JSON0 OT Diff

Finds differences between two JSON object and generates operational transformation (OT) operations for transforming the first object into the second according to the JSON0 OT Type.

The current implementation supports list/object insertion/deletion (i.e. li, ld, oi, od) out of the box.

var jsondiff = require("./json0-ot-diff");

var diff = jsondiff(
	["foo", "bar", 1, 2, 3],
	["foo", "quux", 1, 2]
);
console.log(diff);

> [
>	{ p: [ 1 ], ld: 'bar', li: 'quux' },
>	{ p: [ 4 ], ld: 3 }
>]

String insertion/deletion (i.e. si, sd) operations are generated for string mutations if you provide a reference to diff-match-patch.

var diffMatchPatch = require("diff-match-patch");
var diff = jsondiff(
	["foo", "The only change here is at the end.", 1, 2, 3],
	["foo", "The only change here is at the very end.", 1, 2],
	diffMatchPatch
);
console.log(diff);

> [
> { p: [ 1, 31 ], si: 'very ' },
> { p: [ 4 ], ld: 3 }
>]

The JSON1 OT Type is supported as well. To generate ops for the JSON1 OT type, provide a reference to diff-match-patch, ot-json1 and ot-text-unicode.

var diffMatchPatch = require("diff-match-patch");
var json1 = require("ot-json1");
var textUnicode = require("ot-text-unicode");
var diff = jsondiff(
	["foo", "The only change here is at the end.", 1, 2, 3],
	["foo", "The only change here is at the very end.", 1, 2],
	diffMatchPatch,
	json1,
	textUnicode
);
console.log(diff);

>[
>  [ 1, { "es": [ 31, "very " ] } ],
>  [ 4, { "r": true } ]
>]

This was developed for JsonML with Webstrates in mind, but could be applicable in other situations.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
baipiaomonster/httpcatcher: httpcatcher json code发布时间:2022-07-09
下一篇:
bedrin/jsonde: Profiler and reverse engineering tool for java发布时间:2022-07-09
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap