All Questions
1 question
4
votes
2
answers
108
views
Writing a user's profile image to disk using nested Node.JS closures
I am writing non-blocking code as it should be in Node.JS. If I want run function A after B I do it using callback.
But I find this style guide:
Use closures, but don't nest them. Otherwise your ...