Official introduction to Node.jsOn the homepage of the Node.js official website, there is a sentence describing Node.js:
Translated, it means:
The first sentence of the above sentence explains what Node.js is, and the second sentence explains the characteristics of Node.js. To understand the specific meaning of this official statement, we have to start with the JavaScript language. The core development language of Node.js
Those who have mastered the JavaScript language should know that JavaScript is a scripting language for browsers that can enable interaction between web pages and users.
The reason why JavaScript language can realize the interaction between web pages and users is mainly through events. For example, user input events, button click events, and so on. Next, we take the behavior of a user clicking a button as an example to see how the JavaScript language handles it. From the above analysis chart, we can clearly see:
Through such a small case, we can know that JavaScript language handles the interaction between web pages and users, mainly relying on event-driven. Differences between JavaScript on the web and in Node.jsCurrently, almost all browsers support the JavaScript language. The reason for this is that the JavaScript engine is integrated into the browser. Among many browsers, Chrome browser has relatively better performance, and the V8 JavaScript engine integrated in Chrome browser is open source. Node.js uses the open source V8 JavaScript engine of the Chrome browser. So what is the difference between using JavaScript in a web page and using JavaScript in Node.js? We can understand this through the picture below. It can be clearly seen from the above figure that Node.js does not provide WebKit kernel and HTML-related UI technologies compared to browsers. That is to say, Node.js only provides JavaScript language. Why do you do this? In fact, the original idea of the author of Node.js was to design a lightweight and efficient server. What is a serverSo what is a server? If a web application is compared to a person, then the server is the person's brain. From the above figure, we can know that when people communicate with each other, they basically go through the following steps:
Through this process, we can find that others communicate with me directly through their senses, and do not know how the brain works, nor do they care about how the brain works. WEB applications are similar to people. Users interact with web pages, which pass information to the server. The server receives, processes and responds, and finally the web page displays the results to the user. As a user, you don’t care how the server works, and you may not even feel the existence of the server. However, as a developer, if you want to develop a complete WEB application, the logical core of the server.
A simple understanding of Node.jsHaving said that, we can briefly summarize what Node.js is.
What would it be like to develop a WEB application using Node.js? Since JavaScript logic is event-driven, it is not difficult to understand that Node.js is event-driven.
In addition to being based on the V8 engine of the Chrome browser, Node.js also provides a series of modules that allow us to easily implement some functions. For example, processing client requests, file processing and other operations. When we learn Node.js, we mainly learn the module content provided by Node.js. The above is the detailed content of how to understand what Node.js is. For more information about Node.js, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Nginx reverse proxy configuration removes prefix
>>: Ubuntu MySQL version upgraded to 5.7
Table of contents origin Environmental Informatio...
Copy code The code is as follows: <HTML> &l...
Table of contents vue2.x vue3.x tiny-emitter plug...
1. addtime() Add the specified number of seconds ...
1. Update the yum source The PostgreSQL version o...
KVM stands for Kernel-based Virtual Machine, whic...
1. First introduce several commonly used MySQL fu...
need: The backend returns an array object, which ...
Table of contents Uncontrolled components Control...
Table of contents Preface Idea startup speed Tomc...
1. Elements and tags in HTML <br />An eleme...
background Flex layout achieves alignment and spa...
Sometimes we need to import some data from anothe...
This article example shares the application code ...
The mini program collected user personal informat...