Page 1 of 1
Creating a websocket server
Posted: Wed Nov 01, 2023 8:20 am
by Stefan
Is it possible to create a websocket server with Spiderbasic?
Re: Creating a websocket server
Posted: Wed Nov 01, 2023 10:11 am
by plouf
Not direclty with spiderbasic commands and has little reason to do
A server runs 24/7 not some milliseconds where. Client side(js script) executes
So in general websocket servers run in servers in apache/nginx etc or custom.
I.e. you build one with purebasic. Like one mentiom In docs
https://github.com/Dadido3/WebSocket_Server
Re: Creating a websocket server
Posted: Wed Nov 01, 2023 7:42 pm
by Stefan
Thanks for your answer.
I already know the Purebasic server, that's what I use.
But of course it would be even nicer if I could do this with Spiderbasic