Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 661 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 661 Bytes

handshakejs-nodejs

Makes it easier to interact with handshakejs from nodejs.

IMPORTANT: Requires Node.js 0.10.x or greater.

BuildStatus NPM version

var handshakejs = require('handshakejs')('your_handshakejs_salt');
handshakejs.validate({email: email, hash: hash}, function(err, resp) {
  if (err) { console.log(err); }

  console.log(resp);
});

Running Tests

npm test

Publish to NPM

npm publish