Hi all,

Very interesting. I think both node-webkit and app.js take excellent 
approaches. My understanding is that node-webkit goes all the way in 
merging node and webkit into one message loop and v8 thread, while app.jskeeps 
node and 
webkit (CEF) in separate threads and performs clever bridging of contexts 
between the threads. It seems app.js is robust and clean, but limited, 
whereas node-webkit aims to be a full blown application platform but may 
suffer from more stability issues due to the full merger. 

Also, in app.js, I did not see any example of node being called out of the 
web page - I'm not sure its possible. All the examples I saw are window 
calls being made from the node side of the code.

I'd be interested to know if these architectural differences seem right to 
other people?

Thanks,
Avner.

On Thursday, August 9, 2012 9:09:50 AM UTC+3, Zhao Cheng wrote:
>
> Hello everyone, 
>
> I'm glad to announce a new release of node-webkit, node-webkit is a 
> standalone runtime that run apps written in HTML and node.js. 
>
> It has been a long time since release, this time we come back with 
> following features: 
>
> * Write apps in modern HTML, CSS, JS and WebGL 
> * Strong network and native APIs from node.js 
> * Support modules written in JS and C++ 
> * Easy to package and distribute apps 
>
> Here is a quick hello world: 
>
> <html> 
> <head> 
> <title>Hello World!</title> 
> </head> 
> <body> 
> <h1>Hello World!</h1> 
> We are using node.js <script>document.write(process.version)</script> 
> </body> 
> </html> 
>
> Enjoy it at https://github.com/rogerwang/node-webkit , you can find 
> prebuilt binaries, usage guides and building guides there. 
>
> I'll keep working on this project for next a few months, so feel free 
> to raise issues and request features. 
>
> Cheng 
>

-- 
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 nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to