New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@hdml/hash

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hdml/hash

`@hdml/hash` is a lightweight utility library designed for hashing and generating unique identifiers. It provides various functions to handle hashing and timestamp-related operations, making it ideal for applications that require unique and consistent ide

latest
npmnpm
Version
0.0.2-alpha.13
Version published
Maintainers
1
Created
Source

@hdml/hash

@hdml/hash is a lightweight utility library designed for hashing and generating unique identifiers. It provides various functions to handle hashing and timestamp-related operations, making it ideal for applications that require unique and consistent identifiers or time-based hashing. This module is part of the HDML-Utilities monorepo, which aims to provide tools for working with hierarchical data structures in web-based environments.

Features

  • MD5 Hashing: Compute MD5 hash values for strings.
  • UUID Generation: Generate session-unique UUID-like strings.
  • Hashify: Convert content to a unique hash name using a specific charset.
  • Hashed Timestamp: Generate a consistent hash for a timestamp based on a timestep value.
  • Parse Time Hash: Retrieve the timestamp from a hashed time string.

Installation

To install @hdml/hash, use npm:

npm install @hdml/hash

API

md5(content: string): string

Generates an MD5 hash from the provided string.

uid(): string

Generates a session-unique UUID-like string.

hashify(content: string): string

Converts a string to a unique hash name using a custom charset based on its MD5 value.

hashtime(timestamp: number, timestep: number = 1): string

Returns a persistent hash for the provided timestamp rounded by the given timestep (in milliseconds). The hash is represented in base-36 format.

parsetime(hashtime: string, timestep: number = 1): number

Converts the base-36 hashtime string back to its original timestamp using the provided timestep.

License

Apache License Version 2.0

FAQs

Package last updated on 26 Feb 2026

Did you know?

Socket

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