├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cli.js ├── client.js ├── dist.js ├── index.html ├── package.json ├── screenshot.png └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.swp 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/cli.js -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/client.js -------------------------------------------------------------------------------- /dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/dist.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/screenshot.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/viewdiff/HEAD/server.js --------------------------------------------------------------------------------