Skip to content

Instantly share code, notes, and snippets.

@MrGrootx
Created February 19, 2024 04:15
Show Gist options
  • Select an option

  • Save MrGrootx/d9bd8246510b65cee2637b1a4ddb38df to your computer and use it in GitHub Desktop.

Select an option

Save MrGrootx/d9bd8246510b65cee2637b1a4ddb38df to your computer and use it in GitHub Desktop.
express with mongo id validate
const { id } = req.params;
if (!mongoose.Types.ObjectId.isValid(id)) {
return res.status(404).json({ msg: "Task not found" });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment