Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 709
rebol Avatar asked Jul 07 '13 22:07

rebol


1 Answers

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.

like image 132
johnk Avatar answered Jan 25 '23 21:01

johnk