DEV Community

Cover image for Serialization and Deserialization in JavaScript
Muhammad A Faishal
Muhammad A Faishal

Posted on

Serialization and Deserialization in JavaScript

As developers, we often hear about Serialization and Deserialization, but what do these terms really mean?

Serialization

Serialization is the process of converting a data structure, such as JavaScript object or array, into a format that can be easily stored.

In JavaScript, the most common serialization format is JSON (JavaScript Object Notation). The JSON format is easy for both human and machine to read and write.

Example of serialization in JavaScript using JSON:

const data = { name: "John", age: 30 };

const jsonString = JSON.stringify(data);
// Output: '{"name":"John","age":30}'
Enter fullscreen mode Exit fullscreen mode

Deserialization

Deserialization is the opposite process of Serialization. It converts data in its serialized format into its original data structure, such as a JavaScript object or array, to make the data usable and accessible in the application.

Example of deserialization in JavaScript using JSON:

const jsonString = '{"name":"John","age":30}';

const data = JSON.parse(jsonString);
// Output: { name: "John", age: 30 }
Enter fullscreen mode Exit fullscreen mode

Other Formats

Not only JSON, there are numerous serialization formats available, as listed below:

BSON

BSON is a binary-encoded data interchange format designed to be more efficient in terms of storage and transmission compared to JSON. It extends JSON with additional data types and is typically used in the context of MongoDB.

Example of serialization & deserialization of BSON using bson package:

import { BSON, ObjectId } from 'bson';

const data = { _id: new ObjectId(), name: "John", age: 30 }

// serialization

const bytes = BSON.serialize(data);
// Output: <Buffer 2e 00 00 00 07 5f 69 64 00 64 ca 53 01 9d 14 77 b6 a1 a2 89 e4 02 6e 61 6d 65 00 05 00 00 00 4a 6f 68 6e 00 10 61 67 65 00 1e 00 00 00 00>

// deserialization

const doc = BSON.deserialize(bytes);
// Output: {
//  _id: new ObjectId("64ca53019d1477b6a1a289e4"),
//  name: 'John',
//  age: 30
// }
Enter fullscreen mode Exit fullscreen mode

EJSON

Extended JSON (EJSON) is a superset of JSON, which means it includes all features of standard JSON and extends it additional conventions for representing certain data type and MongoDB specific constructs.

Example of serialization & deserialization of EJSON using bson package:

import { EJSON } from 'bson';

const data = { "_id": { "$oid": "613e8693499f15328a17e8b1" }, "name": "John", "age": 30 }

// serialization

const jsonString = EJSON.stringify(data, { relaxed: false });
// Output: '{"_id":{"$oid":"613e8693499f15328a17e8b1"},"name":"John","age":{"$numberInt":"30"}}'

// deserialization

const data = EJSON.stringify(data, { relaxed: false });
// Output: {
//  _id: new ObjectId("613e8693499f15328a17e8b1"),
//  name: 'John',
//  age: new Int32(30)
// }
Enter fullscreen mode Exit fullscreen mode

Conclusion

In summary, Serialization is the process of converting data into a compact and structured format suitable for storage and transmission, while Deserialization is the process of converting the serialized data back into its original format.

Top comments (3)

Collapse
 
fruntend profile image
fruntend

Сongratulations 🥳! Your article hit the top posts for the week - dev.to/fruntend/top-10-posts-for-f...
Keep it up 👍

Collapse
 
raddevus profile image
raddevus • Edited

Nice quick and interesting article. JSON (serialization/ deserialization) is additionally great (and necessary) for storing / retrieving your objects in localStorage.

const data = { name: "John", age: 30 };
// save the item to localStorage
localStorage.setItem("user",JSON.stringify(data))
// get the item from localStorage and save it in user var
let user = JSON.parse(localStorage.getItem("user"));
Enter fullscreen mode Exit fullscreen mode

If you get a chance, I'd appreciate it if you took a look at my latest article here on dev.to: Software Developer, Are You Just A Hammer?

Collapse
 
maafaishal profile image
Muhammad A Faishal

Yeah, it is. Not only localStorage, but also other methods.

Sure, I will.