Why you should ditch NPM UUID. Node has you covered!

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • GoodJsCode

    Discontinued GoodJsCode™ book. Learn the best coding practices and standards to follow for creating professional quality JavaScript code that lasts long! 💪

  • // Run: node benchmark-uuid-vs-core-crypto.js // native randomUUID crypto benchmark const { randomUUID } = require("crypto"); console.time("crypto.randomUUID()"); for (let time = 0; time < 10_000_000; time++) { randomUUID(); } console.timeEnd("crypto.randomUUID()"); // uuid package benchmark const { v4 } = require("uuid"); console.time("uuid.v4()"); for (let time = 0; time < 10_000_000; time++) { v4(); } console.timeEnd("uuid.v4()"); // note, I've used 10_000_000 with _ which are numeric separators // https://github.com/pH-7/GoodJsCode#-clearreadable-numbers

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • GitHub Sponsors: azu the Japanese TypeScript and JavaScript developer

    3 projects | dev.to | 25 Apr 2024
  • 10 GitHub Repos for Mastering JavaScript

    10 projects | dev.to | 19 Apr 2024
  • Why clean code makes JavaScript programming easier

    1 project | dev.to | 16 Jan 2024
  • Coming to grips with JS: a Rubyist's deep dive

    16 projects | dev.to | 29 Dec 2023
  • The difference between clean code and clean architecture?

    2 projects | dev.to | 17 Dec 2023