Unique ID Generation

JS
S
JavaScript

The most simple and efficient way to generate an ID. Can be used to generate a correlation identifier and passing it along all network requests

1import * as uuid from 'uuid';
2private correlationId: string = uuid.v1();

Created on 2/6/2019