Skip to content

Instantly share code, notes, and snippets.

@kvandake
Forked from dehamzah/generate.js
Created July 28, 2019 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kvandake/a1e412ed050c7185970129252a380499 to your computer and use it in GitHub Desktop.
Save kvandake/a1e412ed050c7185970129252a380499 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); });
@kvandake
Copy link
Author

node -e "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