Node.js is an open-source and cross-platform runtime environment built on Chrome’s V8 JavaScript engine for executing JavaScript code outside of a browser. You need to recollect that NodeJS isn’t a framework, and it’s not a programing language. It provides an event-driven, non-blocking (asynchronous) I/O and cross-platform runtime environment for building highly scalable server-side applications using JavaScript.
NodeJS |
Most people are confused and understand it’s a framework or a programing language. We often use Node.js for building back-end services like APIs, Web App, or Mobile App. It’s utilized in production by large companies like Paypal, Uber, Netflix, Walmart, etc.
Why to learn NodeJS?
- Easy Scalability
- Real time web apps
- Fast Suite
- Easy to learn and code
- Advantage of Caching
- Data Streaming
- Hosting
- Corporate Support
Example:
// Node.js program to display some // text on consle screen // Accessing console module const console = require( 'console' ); // Calling console.info() method console.info( "Welcome to CodrGeek" ); |
Steps to Run: First, Download and Install in your system and then use the following command to run your code.
node filename.js
Output: The output will dispaly on console screen.
Welcome to CodrGeek
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above