npm md5

Solutions on MaxInterview for npm md5 by the best coders in the world

showing results for - "npm md5"
Irene
17 Jan 2021
1npm i md5
2var md5 = require("md5"); 
3console.log(md5("message")); //encryption of message
Grace
18 Aug 2016
1//In CMD
2npm i md5
3
4//in JS file
5var md5 = require('md5'); 
6console.log(md5('message'));