Answers for "express async await try catch"

1

try catch async await

async function getData() {
    try {
        const response = await fetch('https://jsonplaceholder.typicode.com/todos/1')
        const data = await response.json();
      	const { userId, id, title, completed } = data;
      	console.log(userId, id, title, completed);
    } catch(err) {
      alert(err)
    }
}
getData();
Posted by: Guest on January-04-2022
1

express-async-errors

const express = require('express');require('express-async-errors');
const User = require('./models/user');
const app = express(); 
app.get('/users', async (req, res) => {
  const users = await User.findAll();  
  res.send(users);
});
Posted by: Guest on November-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language