shelf_swagger_ui

Creator: coderz1093

Last updated:

Add to Cart

Description:

shelf swagger ui

Shelf SwaggerUI #
Present, clean and professional documentation with Swagger + shelf;

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"

copied to clipboard
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}');
}
copied to clipboard
That`s it!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.