webart 0.2.6 copy "webart: ^0.2.6" to clipboard
webart: ^0.2.6 copied to clipboard

outdatedDart 1 only

A relax, simple lightweight non-sync web framework for dart, based on shelf.Just write down your art.

web.dart #

A lightweight web framework for Dart.

WARNING: Dart 1.x support only #

Because some 3rd party packages only offer Dart 1.x support, this package could not support Dart 2 Strong mode.

Features #

  • Web server (Thanks to shelf)
  • Plugin
  • Router
  • Context

Usage #

This example show the basic usage of web.dart

  webart:
    git: https://gitlab.com/thislight/web.dart.git

Or

  webart: any

Code:

import "package:webart/web.dart";

main(){
    // Create app
    Application app = new Application(
        new Config(<String, dynamic>{
            "debug": true,
            "route":{
                "": helloWorldHandler,
            }
        })
    );

    // Start app
    app.start("127.0.0.1", 8088);
}

// Define handler
Future helloWorldHandler(Request request) async{
    request.res.ok("Hello World");
}

Document #

Currently, API documents aren't finished. But you can get an overview of this library.

Documents will be built when new changes are pushed and on 4:00 (UTC+8) of everyday.

The document of branch master

The document of branch develop

LICENSE #

Copyright 2017 thisLight

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A relax, simple lightweight non-sync web framework for dart, based on shelf.Just write down your art.

Repository (GitLab)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

logging, shelf, uri_template

More

Packages that depend on webart