
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
A Node.js module for generating and validation V4 UUIDs
NOTE: as of Version 2, legacy browsers are no longer supported, you can keep using 1.x if you need to support modern and legacy browsers.
$ npm install uuid4
import uuid4 from "uuid4";
// Generate a new UUID
var id = uuid4();
// Validate a UUID as proper V4 format (case-insensitive)
uuid4.valid(id); // true
import uuid4 from 'https://cdn.jsdelivr.net/gh/tracker1/node-uuid4/browser.mjs';
// or
const { default: uuid4 } = await import('https://cdn.jsdelivr.net/gh/tracker1/node-uuid4/browser.mjs')
Use the canonical implementation instead.
import { v4 as uuid4 } from "https://deno.land/std/uuid/mod.ts";
const id = uuid4.generate();
console.log(id);
console.log(uuid4.validate(id));
ISC License
FAQs
Node UUID v4 Generator
The npm package uuid4 receives a total of 88,372 weekly downloads. As such, uuid4 popularity was classified as popular.
We found that uuid4 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.