Accepting data: Handling JSON Data

Learn how to make your custom web server accept data in JSON format.

We'll cover the following...

Managing incoming JSON data requires parsing it from the received POST request. Using an npm package like body-parser is the easiest solution. Install it with the npm install ...