Created
January 9, 2019 17:30
-
-
Save whitetigle/73adfa8e04b5b0a3ccda7ab37d2014c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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