Home > Article > Web Front-end > An in-depth analysis of the installation method and module system of Nodejs
This article will introduce to you the installation method of Nodejs and the module system of Nodejs.

Node.js is a Javascript runtime environment based on the Chrome V8 engine. [Recommended learning: "nodejs Tutorial"]
Web projects use the front endJS is written, and the backend is written in server-side language, such as JAVA PHP GO, but because Node# The birth of ## allows front-end developers to use JS to write server code, so the birth of Node can be said to make the front-end shine, and both the front-end and the back-end blossom.
provides the basis for the development environment to run. Front-end frameworks like Vue React that we usually use have become very Powerful, it can be said to be an essential basic device for the front end.
There are more people using it, and more and more people are using JS on our front-end to contribute to open source. The npm library has become a A very large code warehouse. In the npm package management system, we can find the plug-ins and wheels we need. We can use them directly, which also saves us developers money. A lot of valuable time.
has been introduced very clearly in this article. If you are interested, you can take a look at Portal.
We can download it from his official website.
.

#16.6.1.
node in the terminal to enter Interactive mode and enter a must-have code for our programmers hello world.
echo test>helloWorld.jsrrree
node+文件名即可执行这个文件。Node应用由模块组成,采用的CommonJS模块规范。每一个文件就是一个模块,拥有自己独立的作用域,变量,以及函数等,对其他的模块都不可见,而文件路径就是模块名,所以我们需要了解不同模块之间是怎么交互怎么互相使用的。require、exports、module三个预先定义好的变量可供使用。require意为需要的,也就是说我们可以通过require来引入我们需要的模块,let x=require('./hello') let y=require('./hello.js')
require后面可以接收一个地址,可以是绝对路径也可以是相对路径。.js扩展名可以省略不写。exports意为导出,也有一种说法是暴露,我们一般可以使用exports用于导出模块公有函数和属性。/* hiNode.js */
exports.addIce=function(){
console.log('我在加冰')
}hiNode.js文件中暴露了一个函数addIce,这样我们可以在别的地方require这个模块并使用该函数。/* helloWorld.js */ let x=require('./hiNode') x.addIce()
node helloWorld.js。
Node中我们通过module可以访问到当前模块的一些信息。/* hiNode.js */
exports.addIce=function(){
console.log('我在加冰')
}
console.log(module)module里面有它导出的函数,文件名,路径等信息。实际上当我们require一个模块的时候,它读取的就是该文件的module.exports变量。module.exports变量一般是对象的形式如上图,所以我们经常最常用到module是为了改写module.exports变量这个导出变量,我们可以改成函数形式。/* hiNode.js */
module.exports=function(){
console.log('直接可以调用,我是一个函数')
}/* helloWorld.js */ let x=require('./hiNode') x()
x是因为require了一个函数,模块默认导出对象被替换为一个函数。总的来说NodeJS应用是由模块组成的,我们可以在js文件导出exports函数等变量,在另一个js文件进行导入require这个模块。
更多编程相关知识,请访问:编程入门!!
The above is the detailed content of An in-depth analysis of the installation method and module system of Nodejs. For more information, please follow other related articles on the PHP Chinese website!