Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. router.get('/', async (req, res) => {
  2.     const products = await Product.find().sort('name');
  3.     res.send(products) ;
  4. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement