So, I think an example here will help you understand. Let's use NodeJS with Express and with pg-node. Let's say you have a database. 1. You define an Express handler to handle a get request. 2. In that handler, you connect to a database, which takes a callback 3. You create a query on that connection, this takes a callback. 4. You then write a function that feeds the query result rows into a CSV exporter, which takes…
I'm not sure when promises came to the javascript, but it seems weird that people would settle with callback hell for so long without even attempting to refactoring it. I mean if I didn't have the option of using promises, I would have probably written something like this. function handler(callback){ var state={}; function logic(step,err,data){ if(!step){ connectToDb("somedatabase",logic.bind(state,1)) } if(step==1){…
Ask HN: Is callback hell exaggerated?
11–20 of 21 posts
Re: Ask HN: Is callback hell exaggerated?
#12So, I think an example here will help you understand. Let's use NodeJS with Express and with pg-node. Let's say you have a database. 1. You define an Express handler to handle a get request. 2. In that handler, you connect to a database, which takes a callback 3. You create a query on that connection, this takes a callback. 4. You then write a function that feeds the query result rows into a CSV exporter, which takes…
I'm not sure when promises came to the javascript, but it seems weird that people would settle with callback hell for so long without even attempting to refactoring it. I mean if I didn't have the option of using promises, I would have probably written something like this. function handler(callback){ var state={}; function logic(step,err,data){ if(!step){ connectToDb("somedatabase",logic.bind(state,1)) } if(step==1){…
Re: Ask HN: Is callback hell exaggerated?
#13So, I think an example here will help you understand. Let's use NodeJS with Express and with pg-node. Let's say you have a database. 1. You define an Express handler to handle a get request. 2. In that handler, you connect to a database, which takes a callback 3. You create a query on that connection, this takes a callback. 4. You then write a function that feeds the query result rows into a CSV exporter, which takes…
I'm not sure when promises came to the javascript, but it seems weird that people would settle with callback hell for so long without even attempting to refactoring it. I mean if I didn't have the option of using promises, I would have probably written something like this. function handler(callback){ var state={}; function logic(step,err,data){ if(!step){ connectToDb("somedatabase",logic.bind(state,1)) } if(step==1){…
Re: Ask HN: Is callback hell exaggerated?
#14So, I think an example here will help you understand. Let's use NodeJS with Express and with pg-node. Let's say you have a database. 1. You define an Express handler to handle a get request. 2. In that handler, you connect to a database, which takes a callback 3. You create a query on that connection, this takes a callback. 4. You then write a function that feeds the query result rows into a CSV exporter, which takes…
Promise frameworks do seem to lend well to this sort of problem and I'm excited to see these developed.
Re: Ask HN: Is callback hell exaggerated?
#15It's not black and white, and no library is going to solve all the issues. A pragmatic JS engineer is going to have to use many different tools in their toolbelt on a routine basis, it's just a matter of choosing the right tool for the job (which includes taking into account the environment you're working in and the code that already exists).
But in general, in my experience, callback hell is often a sign of an upstream design-pattern issue. If the procedure you're writing needs to call a series of 20 functions, in sequence, (and wait for them all to callback one after the other) you can probably implement it in a clean way that doesn't require your code to move evermore to the right. Frameworks like Express (which passes around "next"), and Mocha (which passes around "done") set great precedent of alternative ways to conceptualize those kind of issues. Achieving this in practice often means writing a combination of promises, callbacks, and other things.
Re: Ask HN: Is callback hell exaggerated?
#16No. It depends on how much of your business logic must be synchronous and how much it relies on asynchronous operations. It also depends on what you consider to be hellish. async/await is still cleaner than even a single promise, so you might as well use it.
Promises certainly help but you also see abuse of then callback hell where rather than chaining, someone would nest the thens.async await is also great for debugging.
Re: Ask HN: Is callback hell exaggerated?
#17Earlier quoted context omitted.
I'm not sure when promises came to the javascript, but it seems weird that people would settle with callback hell for so long without even attempting to refactoring it. I mean if I didn't have the option of using promises, I would have probably written something like this. function handler(callback){ var state={}; function logic(step,err,data){ if(!step){ connectToDb("somedatabase",logic.bind(state,1)) } if(step==1){…
Did you mean return callback("error1") etc? Forgetting the return is a classic bug when you're in callback hell...
I think the example and your reply neatly illustrate the problem.
Re: Ask HN: Is callback hell exaggerated?
#18Here is my nodejs algorithm so far:
- Code something ugly with 4-7 anonymous function levels
- Realize I'm in callback hell
- Refactor and make sure all functions have access
to the variables they need.
(Because the scope is often changed while refactoring)
- Test
- RepeatRe: Ask HN: Is callback hell exaggerated?
#19No.