Tagada.Swagger
1.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Tagada.Swagger --version 1.1.0
NuGet\Install-Package Tagada.Swagger -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tagada.Swagger" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tagada.Swagger --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Tagada.Swagger, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tagada.Swagger as a Cake Addin #addin nuget:?package=Tagada.Swagger&version=1.1.0 // Install Tagada.Swagger as a Cake Tool #tool nuget:?package=Tagada.Swagger&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Tagada
Tagada is a lightweight functional framework to create a .NET Core Web API without effort. And of course it tastes good.
For those who dream to make an ASP.NET Core Web API in one line of code
Get started
A simple Hello World
public void ConfigureServices(IServiceCollection services)
{
services.AddRouting();
}
public void Configure(IApplicationBuilder app)
{
app.Map("/api")
.Get("/hello", () => "Hello world!")
.Use();
}
Add Swagger documentation
public void ConfigureServices(IServiceCollection services)
{
services.AddRouting();
services.AddSwaggerGen(c =>
{
c.GenerateTagadaSwaggerDoc();
});
}
public void Configure(IApplicationBuilder app)
{
app.Map("/api")
.Get("/hello", () => "Hello world!")
.AddSwagger()
.Use();
}
CQRS-ready
public void ConfigureServices(IServiceCollection services)
{
services.AddRouting();
}
public void Configure(IApplicationBuilder app)
{
app.Map("/api")
.Get("/contacts", GetContacts)
.Get("/contacts/{id}", GetContactById)
.Post("/contacts", CreateContact)
.Use();
}
public class GetContactsQuery { }
public class GetContactByIdQuery
{
public int Id { get; set; }
}
public class CreateContactCommand
{
public string Name { get; set; }
}
Storing Commands in a single line of code
public void ConfigureServices(IServiceCollection services)
{
services.AddRouting();
}
public void Configure(IApplicationBuilder app)
{
app.Map("/api")
.Get("/contacts", GetContacts)
.Get("/contacts/{id}", GetContactById)
.Post("/contacts", CreateContact)
.AfterEach(routeResult => QueriesOrCommands.Add(routeResult.Input))
.Use();
}
Writing queries
- Return result without parameters
.Get("/hello", () => "Hello world!")
- Return result from query (extracted from parameters)
.Get("/add/{number1}/{number2}", (AddNumbersQuery query) => query.Number1 + query.Number2)
- Return result from query with a function
.Get("/contacts", GetContacts)
public static Func<GetContactsQuery, IEnumerable<Contact>> GetContacts = _ => Contacts;
Writing commands
- Command without result
.Post<Command>("/command", Dispatch)
public static void Dispatch(Command command)
{
Commands.Add(command);
}
- Command with a result
.Post("/contacts", CreateContact)
public static Func<CreateContactCommand, Contact> CreateContact = command =>
{
var newContact = new Contact
{
Id = Contacts.Count + 1,
FirstName = command.FirstName,
LastName = command.LastName
};
Contacts.Add(newContact);
return newContact;
};
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 2.0
- Microsoft.AspNetCore.All (>= 2.0.9)
- Swashbuckle.AspNetCore (>= 3.0.0)
- Tagada (>= 1.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.1 | 1,645 | 5/20/2019 |
1.3.0 | 1,407 | 5/19/2019 |
1.2.1 | 1,558 | 12/26/2018 |
1.2.0 | 1,512 | 11/25/2018 |
1.1.0 | 1,554 | 11/25/2018 |
1.0.0 | 1,587 | 9/25/2018 |
0.2.0-alpha | 998 | 1/4/2018 |
0.1.0-alpha | 912 | 12/21/2017 |