Skip to content

Instantly share code, notes, and snippets.

@bishil06
bishil06 / createMD5.js
Created February 5, 2021 13:22
Node.JS create md5 hash from file
const crypto = require('crypto');
function createMD5(filePath) {
return new Promise((res, rej) => {
const hash = crypto.createHash('md5');
const rStream = fs.createReadStream(filePath);
rStream.on('data', (data) => {
hash.update(data);
});