Issue
I already installed express module and body-parser now I can use express to get all the things I required from the user and there’s no need of body-parser anymore, so how do I remove it?
when i start my server
Solution
You can remove it with npm uninstall body-parser
when you are in the folder where package.json file lives.