Are you trying to achieve something like Chromeless project? http://mozillalabs.com/chromeless
using Chromess, you can develop desktop apps using HTML5, CSS, Javascript and compile it to respective platform On Jan 4, 7:07 am, Roger WANG <[email protected]> wrote: > 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
