body_parser 1.1.1 copy "body_parser: ^1.1.1" to clipboard
body_parser: ^1.1.1 copied to clipboard

Parse request bodies and query strings in Dart. Supports JSON, URL-encoded, and multi-part bodies.

example/main.dart

import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'dart:isolate';
import 'package:body_parser/body_parser.dart';

main() async {
  var address = '127.0.0.1';
  var port = 3000;
  var futures = <Future>[];

  for (int i = 1; i < Platform.numberOfProcessors; i++) {
    futures.add(Isolate.spawn(start, [address, port, i]));
  }

  Future.wait(futures).then((_) {
    print('All instances started.');
    print(
        'Test with "wrk -t12 -c400 -d30s -s ./example/post.lua http://localhost:3000" or similar');
    start([address, port, 0]);
  });
}

void start(List args) {
  var address = new InternetAddress(args[0] as String);
  int port = args[1], id = args[2];

  HttpServer.bind(address, port, shared: true).then((server) {
    server.listen((request) async {
      // ignore: deprecated_member_use
      var body = await parseBody(request);
      request.response
        ..headers.contentType = new ContentType('application', 'json')
        ..write(json.encode(body.body))
        ..close();
    });

    print(
        'Server #$id listening at http://${server.address.address}:${server.port}');
  });
}
2
likes
40
pub points
23%
popularity

Publisher

unverified uploader

Parse request bodies and query strings in Dart. Supports JSON, URL-encoded, and multi-part bodies.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

dart2_constant, http_parser, http_server, mime

More

Packages that depend on body_parser