shelf_swagger_ui 1.0.0+2 copy "shelf_swagger_ui: ^1.0.0+2" to clipboard
shelf_swagger_ui: ^1.0.0+2 copied to clipboard

Present clean and professional documentation with Swagger + shelf.

Shelf SwaggerUI #

Present, clean and professional documentation with Swagger + shelf; alt text

Example #

Get a YAML or JSON schema file. Ex: (specs/swagger.yaml)

openapi: 3.0.0
info:
  description: "API system"
  version: "1.0.10"
  title: "Swagger Test"
servers:
  - url: http://my-service.info
    description: Remote server
tags:
- name: "user"
  description: "Access to User"

Configure the handler with Shelf:

import 'package:shelf/shelf_io.dart' as io;
import 'package:shelf_swagger_ui/shelf_swagger_ui.dart';

void main(List<String> args) async {
  final path = 'specs/swagger.yaml';
  final handler = SwaggerUI(path, title: 'Swagger Test');
  var server = await io.serve(handler, '0.0.0.0', 4001);
  print('Serving at http://${server.address.host}:${server.port}');
}

That`s it!

73
likes
120
pub points
82%
popularity

Publisher

verified publisherflutterando.com.br

Present clean and professional documentation with Swagger + shelf.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http_parser, path, shelf, yaml

More

Packages that depend on shelf_swagger_ui