|
Project Information
Members
Links
|
Froth is a Objective-C web application framework that brings the power and simplicity of Cocoa development to the web. While froth web apps are technically deployable on many different platforms using Cocotron, currently our focus has been on the Amazon EC2 cloud. Benefits of Froth
Simple Example @interface WAHelloController : WebActiveController {
}
// http://myexample.com/hello
- (id)helloAction:(WebRequest*)req;
// http://example.com/goodbye
- (id)goodbyeAction:(WebRequest*)req;
@end
@implementation WAHelloController
- (id)helloAction:(WebRequest*)req {
return @"Hello World";
}
- (id)goodbyeAction:(WebRequest*)req {
return @"Goodbye";
}
@endSome Docs
FrothKit is sponsored by Thinking Code Software Inc. |