Buat token acak dengan bcrypt

const crypto = require('crypto');

const token = crypto.randomBytes(48).toString('hex');
florinrelea