0.0.3 • Published 10 years ago
uglydiff v0.0.3
An ugly and poorly tested diff implementation for node.js
Usage
var diff = require('uglydiff');
var res = diff({msg: 'hello'}, {msg: 'world'}); // outputs: "{ msg: 'world' }" console.log(res);
Development
Node.js needs to be available on the machine. Run following commands:
$ npm install $ npm install -g gulp
Running tests
Tests can be executed by running gulp from command line with: $ gulp test
or by running mocha (install mocha: $ npm install -g mocha) $ mocha