serral 0.1.3 copy "serral: ^0.1.3" to clipboard
serral: ^0.1.3 copied to clipboard

outdated

Dart tiny web framework, like Koa

serral #

Dart tiny web framework, like Koa

API #

API Documentation

Getting Started #

Create dart project #

Create dir and create pubspec.yaml

$ mkdir your_project && cd your_project
$ touch pubspec.yaml

pubspec.yaml

name: your_project
version: 0.0.1
environment:
  sdk: '>=2.3.0 <3.0.0'

dependencies:
  serral: any

dev_dependencies:
  # build_runner: ^1.3
  # build_test: ^0.10.2

Install dependencies:

$ pub get

Coding #

$ mkdir lib
$ touch lib/main.dart

Edit lib/main.dart:

import 'package:serral/main.dart';

void main() {
  final app = Serral();
  app.serve(port: 5100);

  app.before((SerralCtx ctx) {
    app.middlewareOfOrigin(ctx, '*');
  });

  app.before((SerralCtx ctx) {
    print(ctx.request.uri.toString());
    ctx.context['dog'] = 100;
  });

  app.after((SerralCtx ctx) {
    print('end');
  });

  app.GET('/', getHome);
  app.POST('/dog', postDog);
}

void getHome(SerralCtx ctx) async {
  // read ctx.context, check app.before;
  print(ctx.context['dog']);
  ctx.send(200, 'hello: ${ctx.context['dog']}');
}

void postDog(SerralCtx ctx) async {
  print(ctx.body);
  // use Futrue, check app.after;
  await Future.delayed(Duration(milliseconds: 300));
  ctx.send(200, 'order');
}

Start server #

$ dart lib/main.dart

Ok, server is running:

serral runing: http://127.0.0.1:5100
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Dart tiny web framework, like Koa

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on serral