Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

shortid typescript

// on nodejs you can use the internal crypto module to generate random
// short ids with
import { randomBytes } from 'crypto';

const shortId = randomBytes(4).toString("hex")
 
PREVIOUS NEXT
Tagged: #shortid #typescript
ADD COMMENT
Topic
Name
4+2 =