nodejs native binding to check for valid Equihash solutions
sudo apt-get install build-essential libsodium-dev libboost-system-dev
var ev = require('bindings')('equihashverify.node');
var header = new Buffer(..., 'hex');
var solution = new Buffer(..., 'hex'); //do not include byte size preamble "fd4005"
ev.verify(header, solution);
//returns boolean
sudo npm install -g mocha
npm install
mocha