A lightweight JavaScript function for hashing messages by the MD5 algorithm
npm install pure-md5





``bash`
npm install -S pure-md5
`javascript
import {md5} from 'pure-md5';
const hash = md5('hello'); // 5d41402abc4b2a76b9719d911017c592
`
`html``