node crypto random string for jwt secret code example
Example: js crpyto generate safe token
const crypto = require('crypto');
const token = crypto.randomBytes(48).toString('hex');
const crypto = require('crypto');
const token = crypto.randomBytes(48).toString('hex');