bliss 0.3.1 copy "bliss: ^0.3.1" to clipboard
bliss: ^0.3.1 copied to clipboard

Dart 1 only

An easy to learn server side framework for Dart.

example/bliss_example.dart

library bliss.example;

import 'dart:async';

import 'package:bliss/bliss.dart';

void main() {
  new Server()
    ..setStaticHandler('web', cacheController: defaultCacheController)
    ..addHandler('get', '/api/:example', returnData)

    // Run the server to start listening for requests.
    ..start();
}

// You can use asynchronous function for the handler task's and it will await
// for the response.
Future returnData(data) async => data;
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

An easy to learn server side framework for Dart.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

mime, path

More

Packages that depend on bliss