DEV Community

Discussion on: Day 5 - Your first week in NodeJS

Collapse
 
tayfunakgc profile image
Tayfun Akgüç • Edited

Perfect article series for beginners. I would like to mention that express has built-in middleware for parsing request body. You don't need to use body-parser. You can use app.use(express.json())

Collapse
 
gsin11 profile image
Gurpreet Singh

Really helpful, thanks for mentioning it @tayfunakgc !