Best practices
These are a set of rules you don’t necessarily have to follow in order for your applications to work properly, but are a huge help to guide you through what you can do to make your projects better. We will list different best practices ranging from design and development to some security and architecture tips.
As previously mentioned, you are not required to apply these rules to your projects or applications, but they will help you to be more successful with your projects. Feel free to take the ones that apply to you or modify some of them to better fit your needs. The purpose of this list is to help you build your own best practices based on these.
Let’s start with some general best practices.
General best practices
Here are some best practices that you can apply to your projects in general.
- Add a health-check endpoint: Create a specific endpoint, such as
/ping
, to get the API’s running status. This is helpful to monitor the...