webservant 0.0.2 copy "webservant: ^0.0.2" to clipboard
webservant: ^0.0.2 copied to clipboard

discontinuedreplaced by: aqueduct
outdated

A simple Dart Webserver library for small REST Services based on the dart:io package

example/webservant_example.dart

import 'package:webservant/webservant.dart';

void main() {
  var webserver = Webserver();
  webserver.get('/echo/:query', (Response response) {
    response.write(response.urlParams);
    response.send();
  });
  webserver.run();
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherkonstantinullrich.de

A simple Dart Webserver library for small REST Services based on the dart:io package

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on webservant