initial commit

This commit is contained in:
2026-01-17 09:10:20 +00:00
commit 3a845bf532
23 changed files with 1816 additions and 0 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);
});