Erstellen Sie zufälliges Token mit Bcrypt

const crypto = require('crypto');

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