How to get post request as object?

Hi all, I get the request of post as below, which is a string but i need the request as an object. Is it possible ??

req.body:“name=Vishesh&id=1”

I need like below,

Object: {
name: Vishesh
Id: 1
}