generate 8 random characters npm code example
Example 1: node random string
var crypto = require("crypto");
var id = crypto.randomBytes(20).toString('hex');
// "bb5dc8842ca31d4603d6aa11448d1654"
Example 2: randomstring npm
npm install randomstring