Reputation: 17390
Is there a WebSocket client (not a server) written for Lua.
It can either be a C module or in pure Lua.
Upvotes: 4
Views: 5623
Reputation: 5926
Yes,there is https://github.com/lipp/lua-websockets. It does not add any C bindings, but relies on luasocket, lpack and depending on your usage scenario (lua-ev).
Upvotes: 1
Reputation: 17390
I gave up and switched to regular sockets on the server side. It was much easier.
Upvotes: 1