top | item 5230067

Native wrapper for webapps on OSX?

6 points| javajosh | 13 years ago | reply

I'm looking for a webapp wrapper for OSX, kind of like PhoneGap, but for OSX not iOS. But there seems to be...nothing. Apache Cordova has a flashy website, but not very much information on what it can do or how to use it - and when I downloaded the bundle, read the readme.md, got sent back to a URL[1], OSX wasn't listed.

[1] http://docs.cordova.io/guide_getting-started_index.md.html

6 comments

order
[+] brutuscat|13 years ago|reply
Although not a complete "wrapper" it is very interesting:

Node Webkit: https://github.com/rogerwang/node-webkit

Features:

Apps written in modern HTML5, CSS3, JS and WebGL.

Complete support for Node.js APIs and all its third party modules.

Good performance: Node and WebKit runs in the same thread: Function calls are made straightforward; objects are in the same heap and can just reference each other;

Easy to package and distribute apps.

Available on Linux, Mac OSX and Windows

[+] jarek-foksa|13 years ago|reply
I would stay away from frameworks that expose native APIs to JavaScript. Always use the best tool to do the job. Features such as dock integration, window management, main menu or filesystem access can be implemented in Obj-C/Cocoa with ~500 lines of code.
[+] cabbeer|13 years ago|reply
Chrome can do this, right click chrome apps and select open as window.