Express.js でランダムにIDを付与する方法 - randomBytes
2021-01-10
Express.js を使用しているとランダムでIDを付与したいケースがある。
randomBytes
が便利。
const { randomBytes } = require('crypto');
app.post('/', (req, res) => {
const id = randomBytes(4).toString('hex');
});
2021-01-10
Express.js を使用しているとランダムでIDを付与したいケースがある。
randomBytes
が便利。
const { randomBytes } = require('crypto');
app.post('/', (req, res) => {
const id = randomBytes(4).toString('hex');
});