# fast-md5

> Super fast JavaScript MD5 implementation

Latest version **1.0.3** (published 2020-10-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install fast-md5
pnpm add fast-md5
yarn add fast-md5
bun add fast-md5
```

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2020-10-07 |
| First published | 2020-01-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 11.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Dmitry Selikhov |
| Maintainers | dimetrix |
| Keywords | object, hash, sha1, md5, fast |

## Links

- npm: https://www.npmjs.com/package/fast-md5
- Repository: https://github.com/idimetrix/fast-md5
- Homepage: https://github.com/idimetrix/fast-md5#readme
- Issues: https://github.com/idimetrix/fast-md5/issues
- npm.io page: https://npm.io/package/fast-md5

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 1.0.3 (latest) — 2020-10-07
- 1.0.2 — 2020-01-04
- 1.0.1 — 2020-01-04
- 1.0.0 — 2020-01-04

## README

# fast-md5

[![build status](https://secure.travis-ci.org/dimetrix/fast-md5.png)](http://travis-ci.org/dimetrix/fast-md5) [![info badge](https://img.shields.io/npm/dt/fast-md5.svg)](http://npm-stat.com/charts.html?package=fast-md5)

a JavaScript function for hashing messages with MD5.

## Installation

You can use this package on the server side as well as the client side.

### [Node.js](http://nodejs.org/):

~~~
npm install fast-md5
~~~


## API

~~~ javascript
md5(message)
~~~

  * `message` -- `String`
  * returns `String`


## Usage

~~~ javascript
var md5 = require('fast-md5');

console.log(md5('Expo 2020'));
~~~

This will print the following

~~~
a299078805331edb24ac298ba9f6364b
~~~

## Contribution

If you find a bug or want to contribute to the code or documentation, you can help by submitting an [issue](https://github.com/idimetrix/fast-md5/issues) or a [pull request](https://github.com/idimetrix/fast-md5/pulls).

## License

[MIT](http://opensource.org/licenses/MIT)

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