DEV Community

Discussion on: Fast Introduction to Node APIs

Collapse
 
deadlysyn profile image
Mike Hoskins

Great article. Especially love the way you generate the random responses. :-)

For body parsing, you can do that natively now (no need for another dependency) as/of Express 4.16.

expressjs.com/en/4x/api.html#expre...

Just learned about that in a recent project. It still gives you req.body, but got merged in because it was such a common requirement.

Collapse
 
nickymarino profile image
Nicky Marino

That's awesome! Thanks for the update