1.2.4 • Published 5 years ago

simple-md5 v1.2.4

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Sync version of Request

Generate MD5 from string or file. Supports synchron method.

Installation

$ npm install -s simple-md5

Simple:

var SimpleMD5 = require('simple-md5');
console.info(SimpleMD5('test'));

From a file:

var SimpleMD5 = require('simple-md5');
SimpleMD5.file('/path/to/file', function(err, hash) {
	if (!err) console.error(err);
	else console.info(hash);
});

From a file synchron:

var SimpleMD5 = require('simple-md5');
var hash = SimpleMD5.fileSync('/path/to/file');
console.info(hash);
1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago