> This project is still in early stage. Currently only Linux is > supported. We'll keep working on it, make it better and bring it to more > platforms. It will be developed in an open way and we have a mailing > list: [email protected] . Welcome to join.
We just finished the initial working version for Windows and OSX. And it's now integrated with CEF (Chromium Embedded Framework). If you are interested, please see the announcement here: https://groups.google.com/d/msg/node-webkit/vxlrEtkLpBk/YpA8K9g27kEJ (Prebuilt binaries are not available yet but the source code is published.) Regards, Roger Roger WANG <[email protected]> writes: > node-webkit brings WebKit to NodeJS. With it, client side applications > can be written with a HTML/CSS UI on NodeJS platform. We believe the > async I/O framework and Javascript language is a perfect combination for > client (mobile) side applications. > > With this module, your Javascript code in HTML can call NodeJS functions > directly: > > <html><head> > <title>testfs</title> > <script> > var fs = require('fs'); > > function test_fs() { > var output = document.getElementById ('output'); > output.innerHTML = ''; > fs.readdir(".", function (err, files) { > var result = ''; > files.forEach(function (filename) { result += filename + '<br/>'; } > ); > output.innerHTML = result; > }); > } > </script></head> > <body onload="test_fs()"> > <p id="output"></p> > </body> > </html> > > Project URL: > https://github.com/rogerwang/node-webkit > > Inside it, the webkit's mainloop is integrated into Node's libev. And > the contexts in Node's V8 and WebKit's V8 are bridged with references so > they can access each other. > > This project is still in early stage. Currently only Linux is > supported. We'll keep working on it, make it better and bring it to more > platforms. It will be developed in an open way and we have a mailing > list: [email protected] . Welcome to join. > > Thanks -- Roger WANG Intel Open Source Technology Center -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
