Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/actboy168/nanoid.lua


https://github.com/actboy168/nanoid.lua

Last synced: 3 months ago
JSON representation

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
```