
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
Get the MD5-sum of a given file, with low memory usage, even on huge files.
npm install --save md5-file
const md5File = require('md5-file')
/* Async usage */
md5File('LICENSE.md', (err, hash) => {
if (err) throw err
console.log(`The MD5 sum of LICENSE.md is: ${hash}`)
})
/* Sync usage */
const hash = md5File.sync('LICENSE.md')
console.log(`The MD5 sum of LICENSE.md is: ${hash}`)
If you require md5-file/promise you'll receive an alternative API where all
functions that takes callbacks are replaced by Promise-returning functions.
const md5File = require('md5-file/promise')
md5File('LICENSE.md').then(hash => {
console.log(`The MD5 sum of LICENSE.md is: ${hash}`)
})
md5File(filepath: string, cb: function)Asynchronously get the MD5-sum of the file at filepath.
The callback cb will be called with (err: Error, hash: string).
md5File.sync(filepath: string) => stringSynchronously get the MD5-sum of the file at filepath.
MIT
The built-in Node.js 'crypto' module provides cryptographic functionality that includes a set of wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify functions. It can be used to generate MD5 checksums, but requires more setup compared to md5-file.
The hasha package is a versatile hashing library that supports multiple algorithms including MD5, SHA-1, SHA-256, and more. It can hash strings, buffers, and files, offering more flexibility compared to md5-file, which is specialized for MD5 checksums of files.
The checksum package is a simple utility for generating checksums for files and strings using various algorithms including MD5, SHA-1, and SHA-256. It provides a more general-purpose solution compared to md5-file, which focuses specifically on MD5 checksums for files.
FAQs
Get the MD5-sum of a given file, with low memory usage, even on huge files.
The npm package md5-file receives a total of 578,192 weekly downloads. As such, md5-file popularity was classified as popular.
We found that md5-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.