Skip to content
uuid / 2.0.0-beta.0

uuid 2.0.0-beta.0

Install from the command line:
Learn more about npm packages
$ npm install @smakss/uuid@2.0.0-beta.0
Install via package.json:
"@smakss/uuid": "2.0.0-beta.0"

About this version

UUID

npm NPM npm npm bundle size (scoped)

In order to create a unique identifier, it's common to use a UUID (Universally Unique Identifier). This package generates a version 4 UUID compliant with RFC 4122 standards using pure JavaScript. The codebase for this project is inspired by the collective wisdom of the StackOverflow community.

Since version v1.1.2, the package does not utilize the crypto API to maximize compatibility across different environments.

Demo

You can check the working demo on RunKit.

or

View @smakss/uuid

How it works?

To install the package, run the following command:

npm i @smakss/uuid
# or
yarn add @smakss/uuid

For CommonJS modules, include it like this:

const uuid = require('@smakss/uuid');

For ECMAScript modules, import it as follows:

import uuid from '@smakss/uuid';

Then, you can use it within your application like this:

// Generate a new UUID
const uniqueID = uuid();
console.log(uniqueID); // Outputs: '123e4567-e89b-12d3-a456-426614174000' (example output)

NOTE: Each call to uuid() generates a unique UUID, so the output will vary with each call.

Contributing

Interested in contributing to this project? Please see CONTRIBUTING.md for guidelines and details.

Code of Conduct

To ensure a welcoming and positive experience for all contributors and users, we adhere to a Code of Conduct. Your cooperation is appreciated.

Details

  • uuid
  • @SMAKSS SMAKSS
  • about 1 year ago
  • MIT
  • 14 dependencies

Assets

  • uuid-2.0.0-beta.0.tgz

Download activity

  • Total downloads 0
  • Last 30 days 0
  • Last week 0
  • Today 0