1.2.5 • Published 8 months ago

simple-md5 v1.2.5

Weekly downloads
1
License
ISC
Repository
-
Last release
8 months 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.5

8 months ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago