Random Password Generator in Node.JS
The other day I thought about how to generate passwords from random arrays. Here is what I came up with:
/*
* RaNdom Password Generator
*/
const crypto = require('crypto');
const PASSWORD_LENGTH = 18;
const LOWERCASE_ALPHABET = 'abcdefghijklmnopqrstuvwxyz'; // 26 chars
const UPPERCASE_ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; // 26 chars
const NUMBERS = '0123456789'; // 10 chars
const SYMBOLS