Skip to content

Instantly share code, notes, and snippets.

@Smidgens
Forked from dehamzah/generate.js
Created March 30, 2020 16:43
Show Gist options
  • Save Smidgens/938294aeb74302d82bfb05b733d66552 to your computer and use it in GitHub Desktop.
Save Smidgens/938294aeb74302d82bfb05b733d66552 to your computer and use it in GitHub Desktop.
Generate secret key in NodeJS
require('crypto').randomBytes(48, function(err, buffer) { var token = buffer.toString('hex'); console.log(token); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment