Socket
Socket
Sign inDemoInstall

uuid-wand

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    uuid-wand

A UUID generator library for TypeScript


Version published
Weekly downloads
88
increased by340%
Maintainers
1
Install size
73.7 kB
Created
Weekly downloads
 

Readme

Source

UUID Wand

UUID Wand is a TypeScript library that provides functionality to generate and validate UUIDs (Universally Unique Identifiers).

Docs

Table of Contents

Installation

To use this library in your project, make sure you have Node.js installed. Follow the steps below to install and use the library:

  1. Clone the repository or download the source code files.

  2. Install the required dependencies by running the following command in the project directory:

    npm install uuid-wand
    
    yarn add uuid-wand
    
    pnpm add uuid-wand
    
  3. Import the UuidGenerator class into your TypeScript file:

    import UuidGenerator from 'uuid-wand';
    

Usage

Generating UUIDs

The UuidGenerator class provides four methods for generating UUIDs:

  • v1(): Generates a version 1 UUID using the current timestamp, clock sequence, and node ID.

    const uuidV1 = UuidGenerator.v1();
    console.log(uuidV1); // Output: e.g., '6a365c44-e127-11eb-b95f-cb258f9664de'
    
  • v3(namespace: string, name: string): Generates a version 3 UUID using the provided namespace and name.

    const uuidV3 = UuidGenerator.v3(
      '6ba7b810-9dad-11d1-80b4-00c04fd430c8',
      'Hello, World!',
    );
    console.log(uuidV3); // Output: e.g., '2ed6657d-e927-568b-95e1-2665a8aea6a2'
    
  • v4(): Generates a version 4 UUID using random values.

    const uuidV4 = UuidGenerator.v4();
    console.log(uuidV4); // Output: e.g., 'd6e3c7b6-8e47-4a3c-a31c-78168d0b96cd'
    
  • v5(namespace: string, name: string): Generates a version 5 UUID using the provided namespace and name.

    const uuidV5 = UuidGenerator.v5(
      '6ba7b811-9dad-11d1-80b4-00c04fd430c8',
      'Hello, World!',
    );
    console.log(uuidV5); // Output: e.g., '886313e1-3b8a-5372-9b90-0c9aee199e5d'
    

Validating UUIDs

  • The validate() method can be used to check if a given string is a valid UUID.
const uuid = '6a365c44-e127-11eb-b95f-cb258f9664de';
const isValid = UuidGenerator.validate(uuid);
console.log(isValid); // Output: true

Bulk Generation

  • The method bulkGenerateV4 takes an integer count as an argument and returns an array of version 4 UUIDs.
const uuids = UuidGenerator.bulkGenerateV4(5);
console.log(uuids);
// Output:
// [
//   'd6e3c7h6-8e47-4a3c-a31c-78168d0b96jd',
//   'd6e3c7b6-8h47-4a3c-a31c-78168d0b96ca',
//   'd6e3c7b6-8347-4g3c-a31c-78168d0b96cq',
//   'd6e3c7b6-8e47-4d3c-a31c-78168d0b96cj',
//   'd6e3c7b6-8e47-4a3c-b31c-78168d0b96cl'

Timestamp Retrieval

  • The method extractTimestampV1 extracts the timestamp from a version 1 UUID string. It returns the timestamp as a number or null if the UUID is not valid or not a version 1 UUID. The extraction logic relies on bit manipulation and should be fairly efficient.
const uuid = '6a365c44-e127-11eb-b95f-cb258f9664de';
const timestamp = UuidGenerator.extractTimestampV1(uuid);
console.log(timestamp); // Output: 1625765020000

Short UUID

  • The method shortUuid creates a shorter, URL-friendly UUID by generating a version 4 UUID, hashing it with MD5, and then encoding it using base64. Any characters not safe for URLs are replaced.
const shortUuid = UuidGenerator.shortUuid();
console.log(shortUuid); // Output: '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'

License

This library is released under the MIT License. Feel free to modify and use it in your projects.

Keywords

FAQs

Last updated on 26 Oct 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc