Best of OpenAPINovember 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    How to Mock an API in ONE minute

    Apidog allows developers to mock an API in just one minute. Mocking is a good choice if you're on one of the following occasions. The API is designed but not developed. It's not only good for mocking but for everything in API development.

  2. 2
    Article
    Avatar of dzDZone·4y

    A Poor Man’s API

    A poor man's API A Poor Man’s API is an alternative to building an entire REST API. Join the DZone community and get the full member experience. Creating a full-fledged API requires resources, both time and money. The solution works, but it has a lot of room for improvement.

  3. 3
    Article
    Avatar of communityCommunity Picks·4y

    Implementing clean architecture in Go

    Go It has been written a lot about the clean architecture in Go It. Its main value is the ability to maintain free from side effects domain layer. This is accomplished by writing dependency-free core domain logic and external adapters. In this article, we'll have a look at how clean architecture is implemented with a sample Go project. In order to signal in case we're unable to proceed we take advantage of Go multiple return value feature.