This article brings you a simple understanding of the nodejs module (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
This short article is used to quickly understand the nodejs module (that is, the CommonJS specification).
Essence
module.exports is used to expose a value. This value is an object by default and can also be overwritten as the original value.
Try to directly log the value of the module in a file, you can get:
{ id: '.', exports: {}, // 默认空对象 parent: null, filename: '/Users/a10.12/webpack-learning/src/module.js', loaded: false, children: [], paths: [ '...' ] }
You need to output what you need to output by modifying the exports attribute of the module, and require is used to import a Module, what is the value of module.exports, is what require gets.
Using
For example, if you have module.js
module.exports = { s: 2, }
, the same is true when the
let v = require('./module.js') console.log(v) // 输出为 { s: 2 }
original value is introduced in index.js
module.exports = 2 let v = require('./module.js') console.log(v) // 输出为 2
Because module.exports is an object by default, there is a natural way to write the object when exporting:
module.exports.s = 2
In this way, require also gets { s: 2 }.
Abbreviation
Probably the bosses felt that module.exports was too long to write, so they referenced exports to module.exports, so check whether the two things are equal. When, return true:
console.log(exports === module.exports) // true
With this feature, you can easily write like this when exporting an object:
exports.s = 2 let v = require('./module.js') console.log(v) // 输出为 2
But you can’t write like this:
// 这样 exports = 2 // 或这样 exports = { s: 2, } // 都是不可以的 let v = require('./module.js') console.log(v) // 输出为 {}
The reason As mentioned above, exports is originally just a reference to module.exports. You can add attributes to the referenced object, but once the reference of exports to module.exports is overridden by the above two methods, exports will be invalid.
Final reminder, if you don’t understand what I said before, you may need to deepen your understanding of ECMAScript reference values and original values...
This article has ended here, more For more exciting content, you can pay attention to the node.js tutorial video column on the PHP Chinese website! ! !
The above is the detailed content of A simple understanding of nodejs modules (with examples). For more information, please follow other related articles on the PHP Chinese website!

vscode自身是支持vue文件组件跳转到定义的,但是支持的力度是非常弱的。我们在vue-cli的配置的下,可以写很多灵活的用法,这样可以提升我们的生产效率。但是正是这些灵活的写法,导致了vscode自身提供的功能无法支持跳转到文件定义。为了兼容这些灵活的写法,提高工作效率,所以写了一个vscode支持vue文件跳转到定义的插件。

JavaScript 不提供任何内存管理操作。相反,内存由 JavaScript VM 通过内存回收过程管理,该过程称为垃圾收集。

Node 19已正式发布,下面本篇文章就来带大家详解了解一下Node.js 19的 6 大特性,希望对大家有所帮助!

选择一个Node的Docker镜像看起来像是一件小事,但是镜像的大小和潜在漏洞可能会对你的CI/CD流程和安全造成重大的影响。那我们如何选择一个最好Node.js Docker镜像呢?

本篇文章给大家整理和分享几个前端文件处理相关的实用工具库,共分成6大类一一介绍给大家,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
