shipped llv8call 0.07
The killer feature of this version is "shttpd support"(http://shttpd.sourceforge.net/).
Run the httpd by JavaScript!
v8ext.LoadBinary("org.coderepos.shttpd");
var SHTTPD = org.coderepos.shttpd.SHTTPD;var httpd = new SHTTPD(8080);
httpd.RegisterURI("/", function (r) {
r.Print("HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n");
r.Print("<html><body>Hello, v8 world</body></html>");
r.SetFlags(SHTTPD.END_OF_OUTPUT);
});
httpd.StartLoop();