在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):lipp/lua-websockets开源软件地址(OpenSource Url):https://github.com/lipp/lua-websockets开源编程语言(OpenSource Language):Lua 87.1%开源软件介绍(OpenSource Introduction):Not maintained / maintainer wanted !!!!If someone wants to maintain / take ownership of this project, reach out to me (issue, email). I like Lua very much, but I don't have enough time / resources to stay engaged with it. AboutThis project provides Lua modules for Websocket Version 13 conformant clients and servers. The minified version is only ~10k bytes in size. Clients are available in three different flavours: Servers are available as two different flavours: A webserver is NOT part of lua-websockets. If you are looking for a feature rich webserver framework, have a look at orbit or others. It is no problem to work with a "normal" webserver and lua-websockets side by side (two processes, different ports), since websockets are not subject of the 'Same origin policy'. Usagecopas echo serverThis implements a basic echo server via Websockets protocol. Once you are connected with the server, all messages you send will be returned ('echoed') by the server immediately. local copas = require'copas'
-- create a copas webserver and start listening
local server = require'websocket'.server.copas.listen
{
-- listen on port 8080
port = 8080,
-- the protocols field holds
-- key: protocol name
-- value: callback on new connection
protocols = {
-- this callback is called, whenever a new client connects.
-- ws is a new websocket instance
echo = function(ws)
while true do
local message = ws:receive()
if message then
ws:send(message)
else
ws:close()
return
end
end
end
}
}
-- use the copas loop
copas.loop() lua-ev echo serverThis implements a basic echo server via Websockets protocol. Once you are connected with the server, all messages you send will be returned ('echoed') by the server immediately. local ev = require'ev'
-- create a copas webserver and start listening
local server = require'websocket'.server.ev.listen
{
-- listen on port 8080
port = 8080,
-- the protocols field holds
-- key: protocol name
-- value: callback on new connection
protocols = {
-- this callback is called, whenever a new client connects.
-- ws is a new websocket instance
echo = function(ws)
ws:on_message(function(ws,message)
ws:send(message)
end)
-- this is optional
ws:on_close(function()
ws:close()
end)
end
}
}
-- use the lua-ev loop
ev.Loop.default:loop()
Running test-server examplesThe folder test-server contains two re-implementations of the libwebsocket test-server.c example. cd test-server
lua test-server-ev.lua cd test-server
lua test-server-copas.lua Connect to the from Javascript (e.g. chrome's debugging console) like this: var echoWs = new WebSocket('ws://127.0.0.1:8002','echo'); DependenciesThe client and server modules depend on:
Install$ git clone git://github.com/lipp/lua-websockets.git
$ cd lua-websockets
$ luarocks make rockspecs/lua-websockets-scm-1.rockspec MinifyA $ squish --gzip The minifed version has be to be installed manually though. TestsRunning tests requires: docker build . The first run will take A WHILE. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论