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

Request body parser middleware for Dia http serer. Parse query, x-www-form-urlencoded, json and form-data params and uploaded files form HttpRequest.

Pub Package

The request body parser middleware for Dia. Parse query, x-www-form-urlencoded, json and form-data params and uploaded files form HttpRequest.

Install: #

Add to pubspec.yaml in dependencies section this:

    dia_body: ^0.1.3

Then run pub get

Usage: #

A simple usage example:

class ContextWithBody extends Context with ParsedBody {
  ContextWithBody(HttpRequest request) : super(request);
}

void main() {
  final app = App((req) => ContextWithBody(req));

  app.use(body());

  app.use((ctx, next) async {
    ctx.body = ''' 
    query=${ctx.query}
    parsed=${ctx.parsed}
    files=${ctx.files}
    ''';
  });

  /// Start server listen on localhsot:8080
  app
      .listen('localhost', 8080)
      .then((info) => print('Server started on http://localhost:8080'));
}

Optional named params: #

  • uploadDirectory - directory for upload files. Default: Directory.systemTemp

Use with: #

  • dia - A simple dart http server in Koa2 style.
  • dia_router - Middleware like as koa_router.
  • dia_cors - CORS middleware.
  • dia_static - Package to serving static files.

Migration from 0.0.* #

change

final app = App<ContextWithBody>();

to

final app = App((req) => ContextWithBody(req));

Features and bugs: #

I will be glad for any help and feedback! Please file feature requests and bugs at the issue tracker.

1
likes
130
pub points
51%
popularity

Publisher

verified publisherawcoding.com

Request body parser middleware for Dia http serer. Parse query, x-www-form-urlencoded, json and form-data params and uploaded files form HttpRequest.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dia, http_parser, mime, uuid

More

Packages that depend on dia_body