Skip to content

Instantly share code, notes, and snippets.

@whitetigle
Created January 9, 2019 17:33
Show Gist options
  • Save whitetigle/1528fed3aca6e02d3d842f8caf1a6434 to your computer and use it in GitHub Desktop.
Save whitetigle/1528fed3aca6e02d3d842f8caf1a6434 to your computer and use it in GitHub Desktop.
var generator = require('generate-password');
var passwords = generator.generateMultiple(3, {
length: 10,
uppercase: false
});
// [ 'hnwulsekqn', 'qlioullgew', 'kosxwabgjv' ]
console.log(passwords);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment