md 5 npm

Solutions on MaxInterview for md 5 npm by the best coders in the world

showing results for - "md 5 npm"
Sara
21 Nov 2020
1npm i md5
2var md5 = require("md5"); 
3console.log(md5("message")); //encryption of message
Raphael
06 Jul 2017
1//In CMD
2npm i md5
3
4//in JS file
5var md5 = require('md5'); 
6console.log(md5('message'));