updating the scripts

This commit is contained in:
2026-02-11 13:31:50 +00:00
parent 3a845bf532
commit 36211d28d8
18 changed files with 700 additions and 148 deletions

View File

@@ -0,0 +1,7 @@
const bcrypt = require('bcrypt');
const password = 'Shakkal123!'; // Replace with the exact password you want to use
const saltRounds = 10;
bcrypt.hash(password, saltRounds, (err, hash) => {
if (err) console.error('Error:', err);
else console.log('Hash:', hash);
});