Coding
Ktor: Crafting a Stock Portfolio Endpoint – Part 2.5
Before we delve into Part 3, which focuses on unit testing, it's essential to address one key preparation step to improve the testability and reusability of the code: dependency injection.
Ktor: Crafting a Stock Portfolio Endpoint – Part 2
This is the second post in the series of posts that aim to build a single endpoint with Ktor by wrapping the AlphaVantage Quote Endpoint.
Ktor: Crafting a Stock Portfolio Endpoint – Part 1
Let's build a simple server for a stock market-related app using Ktor - a lightweight Kotlin framework. Part 1 only shows how to set up a Ktor project and return a type-safe response.
The Advantages of Calling an External API from the Server
This post focuses on exploring the benefits of calling the API from the backend since the pros outweigh the cons of this approach for most cases.