Package to replace
base64id
Suggested replacement(s)
const id = crypto.randomBytes(12).toString('base64')
.replace(/\+/g, '-')
.replace(/\//g, '_')
.replace(/=/g, '');
Manifest type
micro-utility (tiny utility replaceable with native code or removal)
Rationale
Can be replaced with crypto.randomBytes or crypto.randomUUID
Availability
No response
Code example (optional)
Package to replace
base64idSuggested replacement(s)
Manifest type
micro-utility (tiny utility replaceable with native code or removal)
Rationale
Can be replaced with
crypto.randomBytesorcrypto.randomUUIDAvailability
No response
Code example (optional)