Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

333
Vistas
async/await not working in NodeJS, it doesn't wait

I'm calling 2 REST API endpoints using Axios in NodeJS.I'm trying to make that the code executes line by line but the second (viewProfile()) function doesn't wait for generateId();

const generateId = async (data) => {
    const options = optionsBuilder("post","profile", data);
    try {
        const response = await axios(options);
        id = response.data.id;
        console.log(id);
    } catch (error) {
        console.error(error);
    }
}
const viewProfile = async (profileId) => {
    console.log('Test 2', profileId);
    const path = `blog/${profileId}`;
    const options = optionsBuilder("get", path);
    try {
        const response = await axios(options);
        console.log(response.data);  
    } catch (error) {
        console.log(error);
        }
    }
}
...
generateId(data);
viewProfile(profileId);
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You must execute them into an async scope:

(async function(){
    await generateId(data);
    await viewProfile(profileId);
})()    

Otherwise they aren't parsed to be awaited and viewProfile will be executed right after generateId. :)

As, if you are using the new ES2022 you can just await into the top level.

For newer Node.js versions:

await generateId(data);
await viewProfile(profileId);
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda