Hi Guest 1 HomePage 1 Jobs 1 WalkIn 1Articles  

 :) Latest Topic
Node.js Tutorial
Parts of Node.js
Features of Node.js
Install Node.js Windows
Install Node.js Linux
Node.js First Example
Node.js Console
Node.js REPL
Node.js NPM
Node.js CL Options1
Node.js CL Option2
Node.js Globals
Node.js OS
Node.js Timer
Node.js Errors
Node.js DNS
Node.js Net
Node.js Crypto
Node.js TLS/SSL
Node.js Debugger
Node.js Process
Node.js Process Example
Node.js Process Example2
Node.js Child Process
Child Process EXEC
Child Process SPAWN
Child Process Fork
Node.js Buffers
Node.js Streams
Node.js Reading Stream
Node.js Writing Stream
Node.js Piping Stream
Node.js Chaining Streams
Node.js File System Part1
Node.js File System Part2
Node.js File System Part3
Node.js Path
Node.js StringDecoder
Node.js Query String
Node.js ZLIB
Node.js Assertion
Node.js V8
Node.js Callbacks
Node.js Events
Node.js Punycode
Node.js TTY
Node.js Web Module
Node.js Upload Files
Node.js Email Send
Node.js BuiltIn Modules
Node.js Assert Code
Node.js Assert Function
Node.js console.time()
 


  

 
Node.js Errors
Question Posted on 03 Feb 2024

Home >> Tutorial >> Node.js Tutorial >> Node.js Errors


Node.js Errors

Node.js Errors



When we say about the Node.js application , you will face four types of errors generally:
  • (1)Standard JavaScript Errors: i.e. < EvalError>, < SyntaxError>, < TypeError>, < URIError>, < RangeError>, < ReferenceError> etc.

  • (2)System Errors

  • (3)User-specified Errors

  • (4)Assertion Errors



Node.js Errors Example 1



Lets take first example to deploy our first standard JavaScript Error - ReferenceError.

File: errorexample1.js


//This will throws with ReferenceError due to undefined b
try {
const a = 1;
const c = a + b;
} catch (err) {
console.log(err);
}




Now open the Node.js command and run the below command


node errorexample1.js






Node.js Reference


Node.js Errors Example 2



File: timererrorexample2.js


const fs = require('fs');
function nodeStyleCallback(err, data) {
if (err) {
console.error('There was an error', err);
return;
}
console.log(data);
}
fs.readFile('/some/file/that/does-not-exist', nodeStyleCallback);
fs.readFile('/some/file/that/does-exist', nodeStyleCallback);




Now open the Node.js command and run the below command


node timererrorexample2.js






Node.js Error





Other Important Questions
Parts of Node.js
Install Node.js Linux
Node.js First Example
Node.js Globals
Node.js DNS







 
Top Searches:asp net questions vb net questions sql query uddl questions class javascript Questions sharepoint interview questions and concept silverlight questions and concept wcf questions beans general knowledge ajax questions
PHP | Biztalk | Testing | SAP | HR |