June 2014
Intermediate to advanced
696 pages
38h 52m
English
One of the data types that you will most commonly work with when implementing Node.js web applications and services is JSON (JavaScript Object Notation). JSON is a very lightweight method to convert JavaScript objects into a string form and then back again. It works well when you need to serialize data objects when passing them from client to server, process to process, or stream to stream or when you’re storing them in a database.
There are several reasons to use JSON to serialize your JavaScript objects instead of using XML:
JSON is much more efficient and takes fewer characters.
Serializing/deserializing JSON is faster than ...
Read now
Unlock full access