Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/actboy168/nanoid.lua
https://github.com/actboy168/nanoid.lua
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/actboy168/nanoid.lua
- Owner: actboy168
- License: mit
- Created: 2024-01-16T16:33:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-16T16:52:24.000Z (about 1 year ago)
- Last Synced: 2024-01-17T02:34:18.787Z (about 1 year ago)
- Language: Lua
- Size: 5.86 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nano ID
A tiny unique string ID generator for pure Lua, implementation of [ai's](https://github.com/ai) [nanoid](https://github.com/ai/nanoid)!
## Example
``` lua
local nanoid = require "nanoid" ()for _ = 1, 5 do
print(nanoid())
end
```