diff --git a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/100-stack-trace.md b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/100-stack-trace.md index c416b0664..eea402e65 100644 --- a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/100-stack-trace.md +++ b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/100-stack-trace.md @@ -1,7 +1,8 @@ -# Stack trace +# Stack Trace -If any error occurs during the execution of the program, Stack trace will be displayed automatically by the JVM for its indication. All the active stack frames at a particular instance during the execution of the program can be traced by the stack trace. This is very helpful for the debuggers because during the code debugging, we can easily identify at which point the error had occurred. +The stack trace is used to trace the active stack frames at a particular instance during the execution of a program. The stack trace is useful while debugging code as it shows the exact point that has caused an error. Free Content What is Stack trace? -Multiple ways to log the stack trace in node.js \ No newline at end of file +What is stacktrace and how to print in node.js? +Multiple ways to log the stack trace in node.js diff --git a/content/roadmaps/107-nodejs/content/107-nodejs-apis/104-got.md b/content/roadmaps/107-nodejs/content/107-nodejs-apis/104-got.md index e8327dfc7..db29a4919 100644 --- a/content/roadmaps/107-nodejs/content/107-nodejs-apis/104-got.md +++ b/content/roadmaps/107-nodejs/content/107-nodejs-apis/104-got.md @@ -1 +1,10 @@ -# Got \ No newline at end of file +# Got + +Got is a lighter, human-friendly, and powerful HTTP request library explicitly designed to work with Node.js. It supports pagination, RFC compliant caching, makes an API request again if it fails, supports cookies out of the box, etc. + +Free Content + +Official Documentation +How to consume APIs using GOT in Node.js? +5 ways to make HTTP requests in Node.js +