> Hi Nicolas, > > > > Does Neko support streams? I’m trying to weigh up possibilities for > backend web application development, including AMF support. I figure I > might as well try moving over to Remoting if I’m rebuilding this > project, and AMF in Neko would be great as it would mean using the same > language throughout. Also, do you plan releasing much information in > the near future on how to compile Neko apps into executables? I read > somewhere that this is possible.
When you mean "streams" I think you mean "sockets" here ? There is a complete C-style socket API in Neko, see : http://nekovm.org/doc/view/socket You can wrap it for haXe (see other wrappers such as neko/File.hx for example on how to do it). Once you have a .n file, you can use the following command to build a standalone executable : nekotools boot myfile.n That will create a "myfile.exe" ("myfile" on *nix systems). Please note that you still need to distribute the LibNeko and others NDLL files you're using with the Exe. Nicolas -- Neko : One VM to run them all (http://nekovm.org)
