Skip to content

Instantly share code, notes, and snippets.

@whitetigle
Created January 9, 2019 17:30
Show Gist options
  • Save whitetigle/73adfa8e04b5b0a3ccda7ab37d2014c2 to your computer and use it in GitHub Desktop.
Save whitetigle/73adfa8e04b5b0a3ccda7ab37d2014c2 to your computer and use it in GitHub Desktop.
var generator = require('generate-password');
var password = generator.generate({
length: 10,
numbers: true
});
// 'uEyMTw32v9'
console.log(password);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment