Quick Tip: Use Node to Create Random Strings
How many times have you worked on an application and you needed a random alpha-numeric string? Did you try to provide a list of numbers and characters in a string and pass in a length to randomly generate a string with a loop? Using Node.js, this can be a lot simpler. You just need to use the crypto library which...