はじめに
JavaScript で 16進数 ランダム文字列を簡単に生成する方法を調べた。
CDN を使う方法(chance.js)、npm からインストールする方法(crypto-random-string)についてまとめた。
TL;DR
- CDN なら chance.js
chance.string({length: 8, pool: '0123456789abcdef'})
- npm なら crypto-random-string
cryptoRandomString({length: 8})