I need to create a web service and I am using Node.js in server. But when I am running in localhost I am getting an error:
Error: Most middleware (lik
You need to replace your old bundled middleware usage (express.bodyParser, express.methodOverride, express.errorHandler) with external/separate middleware. The link in the error gives you the names of these new middleware. You may want to check the documentation for these middleware to check for any API changes since Express 3.