465 B
465 B
title | date | draft | tags | |||||
---|---|---|---|---|---|---|---|---|
🐎 Pegasus — веб сервер для веб приложений на Lua | 2023-09-30T20:08:38+03:00 | true |
|
Установка
luarocks install pegasus
Использование
local pegasus = require 'pegasus'
local server = pegasus:new({
port='9090',
location='root/'
})
server:start(function (request, response)
print "It's running..."
end)