Alec Gorge
Alec Gorge

Reputation: 17390

WebSocket Client in Lua

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

Answers (4)

lipp
lipp

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

Alec Gorge
Alec Gorge

Reputation: 17390

I gave up and switched to regular sockets on the server side. It was much easier.

Upvotes: 1

kikito
kikito

Reputation: 52641

I could only find this pastebin:

http://pastebin.com/f50d79dcd

Upvotes: 0

Related Questions