We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be449f8 commit 6e15218Copy full SHA for 6e15218
NodeJS.md
@@ -3,3 +3,11 @@
3
require('http').createServer( (req, res) => {
4
// make me serve different files on /foo vs /bar
5
});
6
+
7
+What is "callback hell" and describe a solution methodology.
8
9
+How do you handle an unhandled exception in NodeJS? Use the process object to create an exception handler for these.
10
11
+ process.on('uncaughtException', function(err) {
12
+ console.log('Caught exception: ' + err);
13
+ });
0 commit comments