Reputation:
Im having nodeJS app with express 4.13.0, when I run requests from postman the process has invoked but I dont get status successful (200)or any status , I see that the code was invoked (I got the console message)
console.log("Project replaced successfully ");
res.end("Replaced successfully ", 200);
I try even with just
res.end(200)
and I still see that the postman is processing, what could be the reason?
Upvotes: 0
Views: 78