Serialization and Deserialization: How Data Travels Between Systems
Your application works with objects.
The network works with bytes.
So how does this:
const user = {
name: "Vishal",
age: 23,
active: true
};
travel from one system to another?
The answer involv
backend-scratch.hashnode.dev4 min read