This article mainly introduces the basic concepts of Node, which has certain reference value. Now I share it with everyone. Friends in need can refer to it
Brendan Eich is the father of JavaScript. The first reason he entered Netscape was to engage in the development of Scheme, but he received a task that he didn't like very much. However, due to the urgent need, the father of js completed the design of javascript in just 10 days. , the project codename isMocha
, and it was originally namedLiveScript
.
javascript draws on different features of other languages, such as functional style, prototype chain inheritance, etc. It eventually got its own name javascript
due to being in the shadow of java at the time.
Many people cannot distinguish the relationship between java and javascript. Their relationship is like the relationship between Lei Feng
and Leifeng Pagoda
.
In the first browser war, Microsoft added its scripting language JScript to IE3.0, which is fully compatible with javascript. In early 1997 JScript has been added to its server IIS 3.0. This is the scripting language we can use in ASP.
In view of Microsoft's opposition to Netscape, Netscape standardized JavaScript in 1996 and submitted it to the ECMA international standards organization in November. And in June 1997, the first version ofjavascript
was launched,ECMA-262
, also known asECMAScript
.
The fact that javascript can run on the server side was gradually forgotten untilNode
relied on the high performance ofV8
andasynchronous I/O
, reappears in people’s sight.
The next step is our Node learning journey
The above is the entire content of this article. I hope it will be helpful to everyone’s learning. For help, please pay attention to the PHP Chinese website for more related content!
Related recommendations:
The release content of the vue.js-based dialog plug-in art-dialog-vue2.0
The above is the detailed content of Introduction to the basic concepts of Node. For more information, please follow other related articles on the PHP Chinese website!