An open API service indexing awesome lists of open source software.

https://github.com/luavixen/foxid

Tiny unique ID generator, similar to nanoid.
https://github.com/luavixen/foxid

bun js nanoid nodejs random uuid

Last synced: 4 months ago
JSON representation

Tiny unique ID generator, similar to nanoid.

Awesome Lists containing this project

README

          

# foxid
Tiny unique ID generator, similar to [nanoid](https://github.com/ai/nanoid).

* URL-friendly
* Cryptographically secure
* Simple implementation
* Good performance
* Node.js/Deno/Bun and browser support

```javascript
var foxid = require('foxid')
foxid() // "w9q567s7qj4bmp9h"
foxid(32) // "tw24cymw3kb225mctevc3csna241pnm2"
```

## License

Licensed under the [MIT License](LICENSE).

Made with ❤ by Lua ([foxgirl.dev](https://foxgirl.dev/)).