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.
- Host: GitHub
- URL: https://github.com/luavixen/foxid
- Owner: luavixen
- License: mit
- Created: 2022-11-23T06:35:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-10-27T20:21:40.000Z (8 months ago)
- Last Synced: 2025-10-27T22:19:45.388Z (8 months ago)
- Topics: bun, js, nanoid, nodejs, random, uuid
- Language: JavaScript
- Homepage: https://git.vixen.computer/lua/foxid
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)).