I am trying to generate random requestId for my express server. I have been using uuidV1() from node-uuid module. It's working fine for the normal requests but when i'm trying to loadtest it using concurrent requests. the generated value is same.
const uuidv1 = require("uuid/v1");
const reqId = uuidv1()