You can edit almost every page by Creating an account and confirming your email.

NIWA Cloud Application Platform

From EverybodyWiki Bios & Wiki


Cloud Application Platform
NIWA Cloud Application Platform Logo
Developer(s)NIWA
Written inPerl
Engine
    TypeWeb development
    Cloud computing
    Websiteniwacap.com

    Search NIWA Cloud Application Platform on Amazon.

    NIWA Cloud Application Platform is a platform as a service (PaaS) cloud computing platform for developing and hosting web applications.

    Web applications run in several containers in the cloud. This allows you to scale applications automatically: while the number of requests to the application grows, resources are allocated automatically.

    Supported features/restrictions

    Currently, the supported programming language is Perl (PSGI interface only). In the future we plan to support programming languages such as Ruby (Rack interface) and Python (WSGI interface).

    Perl

    An example of the smallest applications

    • .../hello_world.psgi
    my $app = sub {
        my $env = shift;
        return [ '200',
               [ 'Content-Type' => 'text/plain' ],
               [ "Hello World" ] ];
    };
    

    Perl links


    This article "NIWA Cloud Application Platform" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:NIWA Cloud Application Platform. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.