OData Angular Generator allows generation of API client libraries, server stubs and configuration automatically given an OData Metadata.
- https://hub.docker.com/r/diegomvh/odataapigen (official CLI)
The OData Angular Generator image acts as a standalone executable.
To generate code with this image, you'll need to mount a local location as a volume.
Example:
docker run -it --rm -v ${PWD}:/local diegomvh/odataapigen \
Name=MsGraph \
Metadata=https://graph.microsoft.com/v1.0/\$metadata \
Output=/local
The generated code will be located under ./msgraph
in the current directory.