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

154
Vistas
Parent function returning a JSON object from a nested function

So I'm trying to create a function that returns a JSON object that is read from a file, however, I don't know how to return the object from the readConfig function. I tried to create a callback function but was unable to do so. I know the function works because when I console.log(jsonData) from inside the readFile.then(), it logs the object correctly.

const fs = require('node:fs')

function readConfig() {
    fs.promises.readFile('./config.json', 'utf8')
        .then(content => {
            jsonData = JSON.parse(content, null, 2);
            return jsonData
        })
        .catch(err => {
            console.log(err);
        });
};


// This is what I want to do able to do with the readConfig function

data = readConfig()
console.log(data.value)

Any help is greatly appreciated :)

EDIT: I tried using the promise based return that was commented but would just get promises returned back.

const fs = require('node:fs')

function readConfig() {
    return fs.promises.readFile('./config.json', 'utf8')
        .then(content => {
            jsonData = JSON.parse(content, null, 2);
            return jsonData
        })
        .catch(err => {
            console.log(err);
        });
};

readConfig().then(v => v);

However this just returns back a pending promise, I want to be able to access the values of the JSON object. What I want to be able to do is; readConfig().value and access a value from the object but can't get this to work. I just want to be able to access multiple values from this object in a simple way

about 4 years ago · Juan Pablo Isaza
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