webart 0.2.0-beta.4 copy "webart: ^0.2.0-beta.4" to clipboard
webart: ^0.2.0-beta.4 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.

Unstable #

This library is unstable now, it doesn't has any test. Any discussion welcome!

Features #

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

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>{
            "route":{
                "": helloWorldHandler,
            }
        })
    );

    // Start app
    app.start("127.0.0.1", 8088).then((_){
        print("Server started");
    });
}

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

Document #

Now api documents aren't finished. But you can get a overview of this library.

Documents will be build when new changes pushing or everyday(4:00 UTC+8).

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
0
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

unknown (LICENSE)

Dependencies

bwu_log, logging, shelf, uri_template, yaml

More

Packages that depend on webart