标签:libuv body script 开发框架 安装 参考 性能 ini log
来源 https://www.cnblogs.com/rongfengliang/p/7856329.html
curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh
local http = require(‘http‘)
http.createServer(function (req, res)
local body = ‘Hello world\n‘
res:setHeader(‘Content-Type‘, ‘text/plain‘)
res:setHeader("Content-Length", #body)
res:finish(body)
end):listen(1337, ‘0.0.0.0‘)
print(‘Server running at http://127.0.0.1:1337/‘)
尽管没有普及,但是模式以及贡献的一些lua 类库对于我们还是比较有帮助的
比如: luv 类库一个异步,多线程模型类库,可以通过luarocks 安装
https://luvit.io/docs.html
https://github.com/luvit/luvit
http://docs.libuv.org/en/v1.x/
标签:libuv body script 开发框架 安装 参考 性能 ini log
原文地址:http://www.cnblogs.com/lsgxeva/p/7966783.html