# md5sum

> MD5 checksum utility

Latest version **0.9.0** (published 2014-09-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install md5sum
pnpm add md5sum
yarn add md5sum
bun add md5sum
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.9.0 |
| Published | 2014-09-07 |
| First published | 2014-09-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Nanqiao Deng |
| Maintainers | nqdeng |
| Keywords | checksum |

## Links

- npm: https://www.npmjs.com/package/md5sum
- Repository: https://github.com/nqdeng/md5sum
- Issues: https://github.com/nqdeng/md5sum/issues
- npm.io page: https://npm.io/package/md5sum

## Recent versions

- 0.9.0 (latest) — 2014-09-07

## README

md5sum
===========================

A simple MD5 checksum utility for NodeJS.

## Install

	npm install md5sum

## API

### md5sum.calculate(dir, filename, callback)

	var md5sum = require('md5sum');

	md5sum.calculate('some/dir', 'checksum', function (err) {
		if (err) {
			// Something wrong.
		} else {
			// 'checksum' file generated under 'some/dir'
		}
	});

### md5sum.validate(dir, filename, callback)

	var md5sum = require('md5sum');

	md5sum.validate('some/dir', 'checksum', function (err) {
		if (err) {
			// Something wrong.
		} else {
			// All files are validated.
		}
	});

## LICENSE

Copyright (c) 2014 Alibaba.com, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

---
_Source: https://npm.io/package/md5sum · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
