All Projects → r-lib → diffviewer

r-lib / diffviewer

Licence: Unknown and 2 other licenses found Licenses found Unknown LICENSE MIT LICENSE.md Unknown LICENSE.note
HTML widget to visually compare files

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
r
7636 projects

Projects that are alternatives of or similar to diffviewer

Rxdatasources
UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...)
Stars: ✭ 2,784 (+5253.85%)
Mutual labels:  diff
ExtDiff
Compare documents using MS Word from the command line.
Stars: ✭ 100 (+92.31%)
Mutual labels:  diff
go-delta
go-delta - A Go package and utility to generate and apply binary delta updates.
Stars: ✭ 25 (-51.92%)
Mutual labels:  diff
grillade
Grid sytem for shiny apps or rmarkdown and to create htmlwidgets matrix
Stars: ✭ 16 (-69.23%)
Mutual labels:  htmlwidgets
graphql-schema-diff
📄🔄📄 Returns the diff of two GraphQL schemas. Detects dangerous and breaking changes.
Stars: ✭ 54 (+3.85%)
Mutual labels:  diff
haoide-vscode
haoide-vscode is a vscode extension for salesforce development, which is used to replace haoide
Stars: ✭ 22 (-57.69%)
Mutual labels:  diff
Diff So Fancy
Good-lookin' diffs. Actually… nah… The best-lookin' diffs. 🎉
Stars: ✭ 14,806 (+28373.08%)
Mutual labels:  diff
langx-java
Java tools, helper, common utilities. A replacement of guava, apache-commons, hutool
Stars: ✭ 50 (-3.85%)
Mutual labels:  diff
diffy
Tools for finding and manipulating differences between files
Stars: ✭ 47 (-9.62%)
Mutual labels:  diff
lineup htmlwidget
HTMLWidget wrapper of LineUp for Visual Analysis of Multi-Attribute Rankings
Stars: ✭ 51 (-1.92%)
Mutual labels:  htmlwidgets
git-tui
Collection of human friendly terminal interface for git.
Stars: ✭ 95 (+82.69%)
Mutual labels:  diff
vscode-diff
Compare two folders in Visual Studio Code
Stars: ✭ 66 (+26.92%)
Mutual labels:  diff
gonp
diff algorithm in Go
Stars: ✭ 42 (-19.23%)
Mutual labels:  diff
RagGrid
R interface to ag-grid.
Stars: ✭ 31 (-40.38%)
Mutual labels:  htmlwidgets
taucharts
📊 An R htmlwidget interface to the TauCharts javascript library
Stars: ✭ 66 (+26.92%)
Mutual labels:  htmlwidgets
Dsladapter
🔥 Kotlin时代的Adapter, Dsl 的形式使用 RecyclerView.Adapter, 支持折叠展开, 树结构,悬停,情感图状态切换, 加载更多, 多类型Item,侧滑菜单等
Stars: ✭ 231 (+344.23%)
Mutual labels:  diff
knowledge-graph-change-language
Tools for working with KGCL
Stars: ✭ 14 (-73.08%)
Mutual labels:  diff
intellij-diff-plugin
Syntax highlighting for .diff files and .patch files in IntelliJ IDEs
Stars: ✭ 17 (-67.31%)
Mutual labels:  diff
extract-html-diff
extract difference between two html pages
Stars: ✭ 29 (-44.23%)
Mutual labels:  diff
nano-staged
Tiny tool to run commands for modified, staged, and committed files in a GIT repository.
Stars: ✭ 347 (+567.31%)
Mutual labels:  diff

diffviewer

Codecov test coverage R build status

diffviewer provides an HTML widget for visually comparing files. It currently wraps three javascript libraries:

It extracts out common UI provided by shinytest and vdiffr.

Installation

You can install the released version of diffviewer from CRAN with:

install.packages("diffviewer")

Example

This is a basic example which shows you how to solve a common problem:

library(diffviewer)
path1 <- tempfile()
writeLines(letters, path1)
path2 <- tempfile()
writeLines(letters[-(10:11)], path2)

visual_diff(path1, path2)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].