DEV Community

Discussion on: Build a news app with Nodejs , Express , EJS and NewsApi

Collapse
 
qsrahman profile image
Sami ur Rahman

Good one!
However there is no need to install body-parser as express.js include it. use instead

app.use(express.urlencoded({ extended: true }));
Enter fullscreen mode Exit fullscreen mode
Collapse
 
atultyagi612 profile image
atultyagi612 • Edited

Thanks for the suggestion bro.