Fast GUID Generator In JavaScript

Category: Javascript , Recommended | March 1, 2022
Author:YahyaAltintop
Views Total:97 views
Official Page:Go to website
Last Update:March 1, 2022
License:MIT

Preview:

Fast GUID Generator In JavaScript

Description:

A fast GUID (globally unique identifier) generator for both browser and Node.js.

See Also:

How to use it:

1. Import the GUID Generator.

// browser
import { Guid } from "./src/guid";
// node.js
let { Guid } = require("./src/guid");

2. Generate a unique GUID.

Guid.NewGuid();
// => bfd30af8-d07b-4e63-828a-99cabce33f82

Changelog:

03/01/2022

  • delete unused files

01/19/2022

  • Code optimization

11/11/2021

  • Bugfix

You Might Be Interested In:


Leave a Reply