Native wrapper for webapps on OSX?
6 comments
If by "webapp wrapper" you actually mean a site-specific browser, there's Fluid: http://fluidapp.com/
Or, if you mean an SDK or framework for writing a native app using web technologies, I know of a few:
TideSDK: http://www.tidesdk.org/
AppJS, if you're not opposed to Node.js: http://appjs.org
Awesomium: http://awesomium.com/
Or, if you mean an SDK or framework for writing a native app using web technologies, I know of a few:
TideSDK: http://www.tidesdk.org/
AppJS, if you're not opposed to Node.js: http://appjs.org
Awesomium: http://awesomium.com/
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.
Chrome can do this, right click chrome apps and select open as window.
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
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
[1] http://docs.cordova.io/guide_getting-started_index.md.html