Recent Articles

Enforcing Your Architecture with ArchUnit

ArchUnit is a Java library to validate your software architecture. The library is well described in its documentation and as its fluent API is pure Java, it’s easy to explore using the code completion in the IDE.

Read more

Organizing Code in Node.js Application

Node.js is a popular server-side runtime engine based on JavaScript to build and run web applications. Organizing our source code right from the start is a crucial initial step for building large applications.

Read more

How to Build Responsive Web Apps with Spring Boot and React: A Step-by-Step Guide

Choosing a backend and frontend stack for web apps can be a daunting task, as there are numerous options available for backend (Node.

Read more

Structured Logging with Spring Boot and Amazon CloudWatch

The primary purpose of logging in applications is to debug and trace one or more root causes of an unexpected behavior.

Read more

Serialize and Deserialize with Jackson’s @JsonView in a Spring Boot Application

The Jackson API is one of the best JSON parsers in Java. Spring integrates well with Jackson and with every new Spring release, newer Jackson features get incorporated making the Spring Jackson support more flexible and powerful.

Read more

Build CRUD APIs Using Apollo Server(Graphql), MongoDB and Node.Js

REST API is a widely used client-server communication protocol, but it has limitations when dealing with clients such as web, iOS, Android, smart devices, etc.

Read more