Node.js Tutorial
- Node.js Tutorial
- Install Node.js on Windows
- Install Node.js on Linux/Ubuntu/CentOS
- Node.js First Example
- Node.js Console
- Node.js REPL
- Node.js Package Manager
- Node.js Command Line Options
- Node.js Global Objects
- 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 Child Process
- Node.js Buffers
- Node.js Streams
- Node.js File System (FS)
- Node.js Path
- Node.js StringDecoder
- Node.js Query String
- Node.js ZLIB
- Node.js Assertion Testing
- Node.js V8
- Node.js Callbacks
- Node.js Events
- Node.js Punycode
- Node.js TTY
- Node.js Web Module
- NestJS
Node.js MySQL
Node.js MongoDB
Nodejs Difference
Node.js MCQ
Node.js Express
Nodejs Interview Questions
Node.js Console
The Node.js console module provides a simple debugging console similar to JavaScript console mechanism provided by web browsers.
There are three console methods that are used to write any node.js stream:
- console.log()
- console.error()
- console.warn()
Node.js console.log()
The console.log() function is used to display simple message on console.
File: console_example1.js
Open Node.js command prompt and run the following code:
We can also use format specifier in console.log() function.
File: console_example2.js
Open Node.js command prompt and run the following code:
Node.js console.error()
The console.error() function is used to render error message on console.
File: console_example3.js
Open Node.js command prompt and run the following code:
Node.js console.warn()
The console.warn() function is used to display warning message on console.
File: console_example4.js
Open Node.js command prompt and run the following code: