Home Web Front-end JS Tutorial What are the methods to implement JS modularity? Explanation of js modularization

What are the methods to implement JS modularity? Explanation of js modularization

Aug 11, 2018 pm 03:30 PM
front end

What this article brings to you is what are the implementation methods of JS modularization? The explanation of js modularization has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. CommonJS
Generation background: At the beginning, everyone thought that JS was useless and the officially defined API could only build browser-based applications. CommonJS was I can’t stand it any longer, CommonJS API defines many APIs used by common applications (mainly non-browser applications), thereby filling this gap. Its ultimate goal is to provide a standard library similar to Python, Ruby and Java. In this case, developers can use CommonJS API to write applications, which can then run on different JavaScript interpreters and different host environments. In 2009, American programmer Ryan Dahl created the node.js project, which uses the JavaScript language for server-side programming. This marks the official birth of "Javascript modular programming". Because to be honest, in a browser environment, not having modules is not a big problem. After all, the complexity of web programs is limited; but on the server side, there must be modules to interact with the operating system and other applications, otherwise there is no way. programming.

Specific representatives: nodeJs, webpack
Principle: The fundamental reason why browsers are not compatible with CommonJS is the lack of four Node.js environment variables (module, exports, require, global, as long as these four variables can be provided, the browser can load the CommonJS module.
Simple implementation:

var module = {  
exports: {}
};
(function(module, exports) {  
exports.multiply = function (n) { 
return n * 1000 
};
}(module, module.exports))
var f = module.exports.multiply;
f(5) // 5000
Copy after login


The above code provides two external variables, module and exports, to an immediate execution function. The module is placed in this immediate execution function. The output value of the module is placed in module.exports, thus realizing the module Loading.

2. AMD
Generation background: After nodeJS based on the commonJS specification came out, the concept of server-side modules has been formed, but, Due to a major limitation, CommonJS The specification does not apply to browser environments. var math = require('math'); math.add(2, 3);require is synchronous. This is not a problem for the server side, because all modules are stored in the local hard disk and can be loaded synchronously. The waiting time is the reading time of the hard disk. However, for browsers, this is a big problem, because the modules are placed on the server side, and the waiting time depends on the speed of the network. It may take a long time, and the browser is in a "suspended" state. Modules on the browser side cannot use "synchronous loading" (synchronous), but can only use "asynchronous loading" (asynchronous). This is the background for the birth of the AMD specification.

Specific representation: RequireJS
Usage example: require([dependencies], function(){});
require() function accepts two parameters
The first parameter is an array, indicating the modules it depends on
The second parameter is a callback function. When all the previously specified modules are loaded successfully, it will be called. The loaded modules will be passed into the function as parameters, so these modules can be used inside the callback function

// 定义模块 myModule.js
define(['dependency'], function(){    
var name = 'Byron';    
function printName(){        
console.log(name);    
}
    return {        
    printName: printName    
    };
    });
// 加载模块
require(['myModule'], function (my){  
my.printName();
});
Copy after login

3, CMD
Generate background: CMD is the Common Module Definition. The CMD specification was developed domestically. Just like AMD has requireJS, CMD has the browser implementation SeaJS. The problems that SeaJS needs to solve are the same as requireJS, but in the module definition. The method and module loading (can be said to be run, parsed) timing are different
Specific representative: Sea.js
Usage example: factory is a function, there are three Parameters, function(require, exports, module)
require is a method that accepts the module ID as the only parameter, used to obtain the interfaces provided by other modules: require(id)
exports is an object, used to export Provide module interface
Module is an object that stores some properties and methods associated with the current module

// 定义模块  myModule.js
define(function(require, exports, module) {  
var $ = require('jquery.js')  
$('p').addClass('active');});
// 加载模块
seajs.use(['myModule.js'], 
function(my){
});
Copy after login

The difference between AMD and CMD:
Execution mechanism : SeaJS's attitude towards modules is lazy execution, while RequireJS's attitude towards modules is pre-execution
Follow the specifications: RequireJS follows the AMD (Asynchronous Module Definition) specification, and Sea.js follows the CMD (Common Module Definition) specification. The difference in specifications leads to different APIs between the two

4, ES6 Modules

Generation background: Before Es6*JavaScript had no module system. It was impossible to split a large program into small files that depended on each other and then assemble them in a simple way. This was very important for development. Large, complex projects pose significant obstacles. In order to solve the problem of module dependency loading, AMD, CMD, and COMMONJS appeared. AMD and CMD (there are also differences between the two, which will be discussed later) are used for the client, and COMMONJS is used for the server. After the emergence of es6, Module is defined Function, and the implementation is quite simple, it can completely replace the existing CommonJS and AMD specifications and become a universal module solution for browsers and servers.
Usage examples: export (throw) import (introduction) export default (when other modules load this module, the import command can specify any name for the anonymous function)

Related recommendations :

JS modularization-RequireJS

javascript modular programming (reprinted), javascript modularization_PHP tutorial

The above is the detailed content of What are the methods to implement JS modularity? Explanation of js modularization. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

An article about memory control in Node An article about memory control in Node Apr 26, 2023 pm 05:37 PM

The Node service built based on non-blocking and event-driven has the advantage of low memory consumption and is very suitable for handling massive network requests. Under the premise of massive requests, issues related to "memory control" need to be considered. 1. V8’s garbage collection mechanism and memory limitations Js is controlled by the garbage collection machine

Explore how to write unit tests in Vue3 Explore how to write unit tests in Vue3 Apr 25, 2023 pm 07:41 PM

Vue.js has become a very popular framework in front-end development today. As Vue.js continues to evolve, unit testing is becoming more and more important. Today we’ll explore how to write unit tests in Vue.js 3 and provide some best practices and common problems and solutions.

Let's talk in depth about the File module in Node Let's talk in depth about the File module in Node Apr 24, 2023 pm 05:49 PM

The file module is an encapsulation of underlying file operations, such as file reading/writing/opening/closing/delete adding, etc. The biggest feature of the file module is that all methods provide two versions of **synchronous** and **asynchronous**, with Methods with the sync suffix are all synchronization methods, and those without are all heterogeneous methods.

PHP and Vue: a perfect pairing of front-end development tools PHP and Vue: a perfect pairing of front-end development tools Mar 16, 2024 pm 12:09 PM

PHP and Vue: a perfect pairing of front-end development tools. In today's era of rapid development of the Internet, front-end development has become increasingly important. As users have higher and higher requirements for the experience of websites and applications, front-end developers need to use more efficient and flexible tools to create responsive and interactive interfaces. As two important technologies in the field of front-end development, PHP and Vue.js can be regarded as perfect tools when paired together. This article will explore the combination of PHP and Vue, as well as detailed code examples to help readers better understand and apply these two

How to solve cross-domain issues? A brief analysis of common solutions How to solve cross-domain issues? A brief analysis of common solutions Apr 25, 2023 pm 07:57 PM

Cross-domain is a scenario often encountered in development, and it is also an issue often discussed in interviews. Mastering common cross-domain solutions and the principles behind them can not only improve our development efficiency, but also perform better in interviews.

Questions frequently asked by front-end interviewers Questions frequently asked by front-end interviewers Mar 19, 2024 pm 02:24 PM

In front-end development interviews, common questions cover a wide range of topics, including HTML/CSS basics, JavaScript basics, frameworks and libraries, project experience, algorithms and data structures, performance optimization, cross-domain requests, front-end engineering, design patterns, and new technologies and trends. . Interviewer questions are designed to assess the candidate's technical skills, project experience, and understanding of industry trends. Therefore, candidates should be fully prepared in these areas to demonstrate their abilities and expertise.

Learn more about Buffers in Node Learn more about Buffers in Node Apr 25, 2023 pm 07:49 PM

At the beginning, JS only ran on the browser side. It was easy to process Unicode-encoded strings, but it was difficult to process binary and non-Unicode-encoded strings. And binary is the lowest level data format of the computer, video/audio/program/network package

How to use Go language for front-end development? How to use Go language for front-end development? Jun 10, 2023 pm 05:00 PM

With the development of Internet technology, front-end development has become increasingly important. Especially the popularity of mobile devices requires front-end development technology that is efficient, stable, safe and easy to maintain. As a rapidly developing programming language, Go language has been used by more and more developers. So, is it feasible to use Go language for front-end development? Next, this article will explain in detail how to use Go language for front-end development. Let’s first take a look at why Go language is used for front-end development. Many people think that Go language is a

See all articles