Search code examples
webserverembedded-linuxrebolrebol3

Where can I find a Rebol 3 micro web server?


There are plenty of nice little web-servers written in Rebol 2, but Rebol 3 has a different networking model, and I'm looking for a web-server that works with that.

I'm not looking for anything fancy. It's just to run on an embedded board to let me control Insteon appliances around my house using Rebol 3 -- which is just a lot easier and cleaner than other methods.

Please don't reply with non-Rebol based web-servers. I'm not interested in using those.


Solution

  • Here is a simple web server created by Andreas Bolka (@earl)

    https://github.com/earl/rebol3/blob/master/scripts/shttpd.r

    It is HTTP 1.0 and has no SSL or other fancy features, and amazingly it is only 64 lines of code hence is ideal for an embedded server.