-
There are a few Javascript libraries for performing word diffs, but they're all 10-100x times slower than [1]: The most performant seems to be diff-match-patch. It remains far slower. Even the C++ implementation is several times slower than |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thanks for your interest - diffing in
Yes! Currently
WASM isn't yet a compilation target and getting |
Beta Was this translation helpful? Give feedback.
Thanks for your interest - diffing in
gitoxide
is definitely in its early stages right now.Yes! Currently
git-diff
can calculate differences between trees, which is the basis to seeing which files changed. These can then be word-diffed with any algorithm, which could already be done with crates on crates.io or the library version ofdelta
.WASM isn't yet a compilation target and getting
gitoxide
there is going to be some work. It's going to happen eventually though,even though there isn't a tracking ticket yet, it's tr…