exports.getAllSauces = (req, res, next) => {
Sauce.find()
.then((sauces) => res.status(200).json(sauces))
.catch((error) => res.status(400).json({ error }));
};
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter