MetaEngine.TypeScript.OpenApi.React
1.2.1
dotnet add package MetaEngine.TypeScript.OpenApi.React --version 1.2.1
NuGet\Install-Package MetaEngine.TypeScript.OpenApi.React -Version 1.2.1
<PackageReference Include="MetaEngine.TypeScript.OpenApi.React" Version="1.2.1" />
<PackageVersion Include="MetaEngine.TypeScript.OpenApi.React" Version="1.2.1" />
<PackageReference Include="MetaEngine.TypeScript.OpenApi.React" />
paket add MetaEngine.TypeScript.OpenApi.React --version 1.2.1
#r "nuget: MetaEngine.TypeScript.OpenApi.React, 1.2.1"
#:package MetaEngine.TypeScript.OpenApi.React@1.2.1
#addin nuget:?package=MetaEngine.TypeScript.OpenApi.React&version=1.2.1
#tool nuget:?package=MetaEngine.TypeScript.OpenApi.React&version=1.2.1
MetaEngine.TypeScript.OpenApi.React
Generate type-safe React TypeScript services from OpenAPI 3.0 specifications.
Installation
dotnet add package MetaEngine.TypeScript.OpenApi.React
Quick Start
using MetaEngine.TypeScript.OpenApi.React;
// Basic usage
OpenApiReactGeneration.Setup("openapi.json", "output/").Execute();
// With options (optional)
OpenApiReactGeneration.Setup("openapi.json", "output/", opt =>
opt
.WithOpenApiOptions(openapi => openapi
.WithStrictValidation()
.WithOperationFilter(op => op.HttpMethod == "GET" || op.HttpMethod == "POST")
.WithHeaderFilter(header => !header.HeaderName.Contains("Authorization")))
.WithReactOptions(react => react
.WithBaseUrlConstant("API_BASE_URL"))
).Execute();
TanStack Query Integration
By default the generator emits plain async API functions — the same shape as the Fetch flavor — so the output works with any React data layer (SWR, Apollo, custom hooks, plain useEffect). Opt in to useQuery/useMutation wrappers via WithTanStackQuery():
OpenApiReactGeneration.Setup("openapi.json", "output/", opt => opt
.WithReactOptions(react => react.WithTanStackQuery())
).Execute();
With the option enabled, every GET operation gets a useXxx hook with a derived queryKey and every mutating verb (POST/PUT/DELETE/PATCH) gets a useXxxMutation hook. Requires @tanstack/react-query in your project. Hook generation is covered by TanStackQueryKeyTest in the test suite.
Documentation
Visit metaengine.eu for full documentation and examples.
License
MIT
| 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.OpenApi (>= 3.5.3)
- Microsoft.OpenApi.YamlReader (>= 3.5.3)
- SimpleServiceProvider (>= 1.3.0)
- System.Text.Json (>= 8.0.5)
- YamlDotNet (>= 16.3.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.2.1 | 95 | 5/26/2026 |
| 1.1.0 | 101 | 5/3/2026 |
| 1.0.3 | 106 | 4/8/2026 |
| 1.0.2 | 113 | 3/29/2026 |
| 1.0.0 | 131 | 1/16/2026 |
| 0.9.8 | 306 | 12/16/2025 |
| 0.9.7 | 209 | 11/24/2025 |
| 0.9.6 | 250 | 11/14/2025 |
| 0.9.5 | 256 | 11/14/2025 |
| 0.9.4 | 265 | 11/14/2025 |
| 0.9.2 | 202 | 10/15/2025 |
| 0.9.1 | 194 | 10/13/2025 |
| 0.9.0 | 199 | 10/9/2025 |
Initial release with full OpenAPI 3.0 support