Giter Club home page Giter Club logo

netcore-api-first's Introduction

API First pets

API First approach based on OpenAPI code generation

API modification Workflow

The following flow describes how to do any change in the API layer.

1)Apply the change to api-spec.yaml
2)Generate the API interface via the command described in 'Generating interface from specification'
3)Copy generated interface code into the files located in src/your-project-name/ControllersInterface
4)Copy generated models code into the files located in src/your-project-name/Models
5)Provide implementation for the defined interfaces in the corresponding files in ControllersImplementation.

Generating API interface from specification

openapi-generator generate -i api-spec.yaml -g aspnetcore --additional-properties=packageName=NetCore.ApiFirst.OpenApi.Generator.WebApi,sourceFolder=autogen

The generated code is in the folder autogen, the important bits are the generated classes inside the Controllers folder which must be updated to Abstract classes

Compare Spec file to actual controller to check if API Spec is updated

During build in CI/CD it is possible to generate the API interface from specification and use tools like bash cmp to compare to the actual api interface

cmp --silent
src/NetCore.ApiFirst.OpenApi.Generator.WebApi/ControllersInterface/PetsApiController
autogen/Controllers/DefaultApi.cs

netcore-api-first's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.