A tiny only 70 bytes random URL-friendly uid generator
npm install easy-uid



Easy uid is the smallest (70 bytes) random URL-friendly uid generator based on Math.random for browser and node without external dependencies. It is useful for generating uid where is no need horizontal scaling and cryptographically security. For example: React Components key, element ids, etc.
```
npm i easy-uid --save
` javascript
import uid from 'easy-uid';
uid(); //1cdcjhb913ov1a
``