Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
An RFC 4122 conformant UUID generator creating v1, v3, v4, and v5 UUIDs.
An RFC 4122 conformant UUID generator creating v1, v3, v4, and v5 UUIDs. Depends on the crypto-js
package for its usage of MD5 (v3) and SHA (v5) hashing, the big-integer
package to prevent precision errors, and nothing else.
In node, first install the package:
npm install --save big-uuid
Then require the package:
const uuid = require('big-uuid');
const v4 = new uuid.UUID();
console.log(v4.id);
// 005e31bc-82a9-4ad8-ce3f-33dce8f03488
const v1 = new uuid.UUID({
version: 1,
// Optionally provide your own clockSequenceGetter,
// nodeIdentifierGetter, and/or timestampGetter.
});
const v3 = new uuid.UUID({
version: 3,
/* One of the UUIDs from the standard or one of your making. */
namespaceId: uuid.NamespaceIds.URL,
name: 'foobar',
});
const v5 = new uuid.UUID({
version: 3,
/* One of the UUIDs from the standard or one of your making. */
namespaceId: uuid.NamespaceIds.X500,
name: 'test',
});
In the browser, build the package (with npm run build
) or install the package from npm and navigate to node_modules/big-uuid
, then copy the dist/browser/index.js
file and point the src of a script block to that file.
FAQs
An RFC 4122 conformant UUID generator creating v1, v3, v4, and v5 UUIDs.
The npm package big-uuid receives a total of 8 weekly downloads. As such, big-uuid popularity was classified as not popular.
We found that big-uuid 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.