I read some tutorials but I don't understand how to chain various promises to read files but one after the other, I think its really easy, but I dont get it.
The idea is open one file, read the filename of the other file, open that file and then start the express server. I got something like this but I think I'm doing not really good, its working but I dont like it.
My code looks like this:
Q.nfcall(fs.readFile, path.resolve(__dirname, './config/db/default.connection.json'), "utf-8")
.then(function(data){ ...
/*HERE I OPEN OTHER 'Q' PROMISE FOR READ OTHER FILE AND START SERVER*/
Q.nfcall(..). then(function(data2){ ... })
.catch(function(err){.. });
}). fail(function(err){...})
.done();
})
.catch(function(err) { ...});
})
.fail(function(err) {.. })
.done();
You can chain promises by returning a new promise from a
.then()
handler,Errors/exceptions will be propagated along the chain as well.
EDIT: in case you want to errors reading
file1.txt
to not propagate, but instead handled in a different way (create the file instead), you could use something like this:(which can probably be done even more concise)