How to use POST method and bodyParser middleware in Express
Notes:
00:15 - Use POST method in express
00:50 - modify server.js file and add post method
01:50 - add form post to index.html to create post requests
02:40 - testing post method
04:00 - Inspecting the post request in chrome browser
05:30 - Use bodyParser to read data from post request body
08:10 - testing bodyParser to read data
Express POST methods: https://expressjs.com/en/guide/routin...
bodyParser: https://www.npmjs.com/package/body-pa...
Express middleware: https://expressjs.com/en/guide/using-...