Im trying to just stop the post request after I\'ve saved a document to the DB, ie:
app.post(\'/blah\'), function(req,res){ //my code does a bunch of stuff
Use --> res.status(204).send(); inside the post request
if(err) { console.log(err); } else { res.status(204).send(); }