What is unit testing? A unit test is a code that will, in an automated way, invoke code to be tested and it will check an assumption about the behavior…
Introduction: There are different types of application architecture like All-in-one architecture, layered architecture, clean architecture, etc. In this article I will explain you how to implement the clean architecture for…
Introduction: What is swagger? It is an opensource tool to create, update, and share OpenAPI definitions with clients. Basically, a developer will use this tool to do API…
Introduction: API key authentication will keep a secure line between the API and clients, however, if you wish to have user authentication, go with token-based authentication, aka OAuth2.0. In this article,…