1.0.5 • Published 1 year ago

my-uuid-library v1.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Using the "crypto" object, this library generates a random string and formats it as a UUID. This code emulates several features of UUID v4 and ensures that randomly generated UUIDs are unique.

Test

This package has test.js file in test folder. Open terminalCTRL + "

Go to test folder in terminal.cd test

Run this command.node test.js

Usage

To use this library in another Node.js project, install the library using the npm install command and import the UUID class using the require function.

const UUID = require('my-uuid-library');

const uuid = UUID.generate();
console.log(uuid);

This example installs the npm package my-uuid-library and assigns its UUID class to the UUID variable. Then, using the generate method of this class, the UUID is generated and printed to the console.

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago