Files
appServerPortalUI/auth/cretePassword.js
2026-02-04 21:31:33 +01:00

7 lines
136 B
JavaScript
Executable File

import bcrypt from "bcrypt";
const password = process.argv[2];
bcrypt.hash(password, 12).then(hash=>{
console.log(hash);
});