We have removed all the middlewares from being bundled with express (which is awesome, i.m.o), but left one: static. I think we really should bundle bodyParser again, because I think parsing bodies is probably even more common than serving static files and many people really have no idea how to read the body from IncomingMessage objects (aka req) in Node.js core for whatever reason.
We have removed all the middlewares from being bundled with express (which is awesome, i.m.o), but left one:
static
. I think we really should bundlebodyParser
again, because I think parsing bodies is probably even more common than serving static files and many people really have no idea how to read the body fromIncomingMessage
objects (akareq
) in Node.js core for whatever reason.