[Node.js] UUID を生成する

作成日: 2022年08月01日

crypto モジュールの randomUUID() メソッドを使用すると、バージョン 4 の UUID を生成することができます。Node.js のバージョンが v15.6.0 v14.17.0 である必要があります。

const crypto = require("crypto");

console.log(crypto.randomUUID());

実行結果は下記のとおりです。

77680987-61b5-49cb-9796-295c9e73f693
Node.js