AutoPoint 1.0.3
See the version list below for details.
dotnet tool install --global AutoPoint --version 1.0.3
dotnet new tool-manifest
dotnet tool install --local AutoPoint --version 1.0.3
#tool dotnet:?package=AutoPoint&version=1.0.3
nuke :add-package AutoPoint --version 1.0.3
<p align="center"> <img src="https://github.com/user-attachments/assets/f516f36e-e9e1-4c35-bea9-4b5b9f671e94" width="200" height="200" /> </p>
AutoPoint
This is a project to make it easier to syncronize API endpoints across multiple languages. Say you have a API and a frontend in two different languages, making sure that the frontend is pointing to the correct endpoints, especially when renaming things, can be quite difficult. This project tries to make it more static, by generating a static reference file in each language based on an API definition.
As an example, take the definition:
{
"Includes": [],
"Branch": {
"name": "simple",
"Nodes": [
]
}
}
If you then write into a terminal the following
autopoint -t api.json -p CSharpProducer
It will output a generated C# file with the static names as follows:
// This document is auto generated!
public static class simple {
public const string Name = "simple";
}
The currently available producers are:
CSharpProducer, to make C# codeJavaScriptProducer, to make JS codeTypeScriptProducer, to make TS code
This package is available as a tool on the NuGet Package Manager, so you can install it by writing dotnet tool install AutoPoint in a terminal.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. |
This package has no dependencies.