search
HomeWeb Front-endJS TutorialJavaScript_javascript tips for embracing modularity

We are once again enveloped in the term and concept of computers.
backbone, emberjs, spinejs, batmanjs and other MVC frameworks invaded.
CommonJS, AMD, NodeJS, RequireJS, SeaJS, curljs Wait for modular JavaScript to come.
The concept of modular JavaScript is particularly strong, and it seems to be catching up with the Ajax trend in 2007.
1. Writing functions (procedural)
Before 2005, no one paid much attention to JavaScript, and it was only used in a small number of applications such as form validation. At that time, you could only write a few lines of JS code on a web page, and 1,000 lines was considered very complicated. At this time, the way to organize the code is a process, and there is no need to write even a single function for dozens of lines of code. A little more requires abstracting a function, and a more complex one requires more functions, and the functions call each other.


2. Writing classes (object-oriented)
In 2006, Ajax swept the world. JavaScript is taken seriously, and more and more back-end logic is placed on the front-end. The amount of JS code in web pages has increased dramatically. At this time, writing functions to organize a large amount of code seems to be insufficient. Sometimes when debugging a small function, you may jump from one function to the Nth function. At this time, the way of writing classes appeared, and Prototype took the lead in becoming popular. Use it to organize code and write classes one by one. Each class is created by Class.create. There are also heavyweight frameworks such as YUI and Ext. Although they have different ways of writing classes, their design ideas are all to meet the development of a large amount of JavaScript code.

3. Writing modules (now, future?)
In 2009, Nodejs was born! This server-side JavaScript adopts modular writing method and quickly conquered the browser-side JSer. Excellent people have followed suit one after another, and various specifications for writing modules are also emerging one after another. CommonJS wants to unify the writing methods of front-end and back-end, while AMD believes that it is suitable for the browser side. Well, no matter what the style of writing modules is, writing modular JavaScript has become popular. Are you ready? (Uh, provocative)

Hey, what is modular JavaScript? Is this another silver bullet we’ve invented? No matter what it is, just study it. As for whether it is suitable for use in projects, it is up to each individual to decide.

Writing this, I didn’t say anything about a “module”. In fact, in the computer field, the concept of modularity has been promoted for nearly forty years. The overall structure of the software embodies the idea of ​​modularization, that is, the software is divided into some independently named components, and each component is called a module. When all the modules are assembled together, a solution to the problem can be obtained.

Modularization is based on the divide and conquer method, but does it mean that we can subdivide the software without limit? In fact, when the division is too fine and the total number of modules increases, the cost of each module does decrease, but the cost of the module interface increases. To ensure reasonable segmentation of modules, it is necessary to understand information hiding, cohesion and coupling.

Information Hiding
Modules should be designed so that the information they contain (processes and data) is not visible to modules that do not need to use it. Each module only completes an independent function and then provides an interface for this function. Modules are accessed through interfaces. In JavaScript, you can use functions to hide, encapsulate, and then return interface objects. The following is a module event that provides event management.

Copy code The code is as follows:

event = function() {
// do more
return {
bind: function() {},
unbind: function() {},
trigger: function() {}
};
}();

In order to implement the desired interfaces bind, unbind, and trigger within the function, you may need to write a lot of code, but these codes (process and data) do not need to be made public to other modules. As long as the interfaces bind, unbind, and trigger can be accessed externally, Can.

The benefits of information hiding for module design are very obvious. It not only supports the parallel development of modules, but also reduces the workload of testing or post-maintenance. If you want to modify the code in the future, the hidden parts of the module can be changed at will, provided that the interface remains unchanged. For example, when the event module was first implemented, a lot of IE Special code was written in order to be compatible with the old version of IE and standard browsers. One day the old version of IE disappeared (in the year of the monkey and the month of the horse), and it only needed to be deleted calmly.

Cohesion
Cohesion refers to the internal implementation of the module. It is a natural extension of the concepts of information hiding and localization. It marks the close integration of the components within a module. degree. The benefit is also obvious, it is much easier to read when related tasks are grouped.
When designing, module cohesion should be improved as much as possible to achieve higher module independence.

Coupling degree
Cohesion refers to a measure of the internal implementation of a specific module, while coupling degree refers to a measure of the degree of association between modules. The degree of coupling depends on the complexity of the interface between modules, the location where the module is entered or called, etc. In contrast to cohesion, loosely coupled systems should be pursued when designing.
Statement
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
如何优化Java代码的可维护性:经验与建议如何优化Java代码的可维护性:经验与建议Nov 22, 2023 pm 05:18 PM

如何优化Java代码的可维护性:经验与建议在软件开发过程中,编写具有良好可维护性的代码是至关重要的。可维护性意味着代码能够被轻松理解、修改和扩展,而不会引发意外的问题或额外的工作量。对于Java开发者来说,如何优化代码的可维护性是一个重要课题。本文将分享一些经验和建议,帮助Java开发者提升其代码的可维护性。遵循规范的命名规则规范的命名规则能够使代码更易读,

如何解决Python的代码的可维护性差错误?如何解决Python的代码的可维护性差错误?Jun 25, 2023 am 11:58 AM

Python作为一门高级编程语言,在软件开发中得到了广泛应用。虽然Python有许多优点,但很多Python程序员经常面临的问题是,代码的可维护性较差。Python代码的可维护性包括代码的易读性、可扩展性、可重用性等方面。在本篇文章中,我们将着重讨论如何解决Python代码的可维护性差的问题。一、代码的易读性代码可读性是指代码的易读程度,它是代码可维护性的核

如何解决Python的代码中的代码复杂度过高错误?如何解决Python的代码中的代码复杂度过高错误?Jun 24, 2023 pm 05:43 PM

Python是一门简单易学高效的编程语言,但是当我们在编写Python代码时,可能会遇到一些代码复杂度过高的问题。这些问题如果不解决,会使得代码难以维护,容易出错,降低代码的可读性和可扩展性。因此,在本文中,我们将讨论如何解决Python代码中的代码复杂度过高错误。了解代码复杂度代码复杂度是一种度量代码难以理解和维护的性质。在Python中,有一些指标可以用

如何使用Go语言进行代码模块化实践如何使用Go语言进行代码模块化实践Aug 03, 2023 am 10:31 AM

如何使用Go语言进行代码模块化实践引言:在软件开发中,代码模块化是一种常用的开发方法论,通过将代码划分为可重用的模块,可以提高代码的可维护性、可测试性和可复用性。本文将介绍如何使用Go语言进行代码模块化实践,并提供相应的代码示例。一、模块化的优势提高代码可维护性:模块化将代码分割为独立的功能模块,每个模块负责特定的任务,使得代码更加清晰和易于修改。提高代码可

vue中什么是模块化vue中什么是模块化Dec 23, 2022 pm 06:06 PM

在vue中,模块化就是把单独的一个功能封装到一个模块(文件)中,模块之间相互隔离,但是可以通过特定的接口公开内部成员,也可以依赖别的模块(方便代码的重用,从而提升开发效率,并且方便后期的维护)。模块化开发的好处:1、条理清晰,便于维护;2、不会一次将所有数据请求回来,用户体验感好;3、模块之间相互隔离,但是可以通过特定的接口公开内部成员,也可以依赖别的模块。

Vue大型项目中实现模块化开发指南Vue大型项目中实现模块化开发指南Jun 09, 2023 pm 04:07 PM

在现代化的Web开发中,Vue作为一款灵活、易上手且功能强大的前端框架,被广泛应用于各种网站和应用程序的开发中。在开发大型项目时,如何简化代码的复杂度,使项目更易于维护,是每个开发者必须面对的问题。而模块化开发,可以帮助我们更好地组织代码,提高开发效率和代码可读性。下面,我将分享一些在Vue大型项目中实现模块化开发的经验和指南:1.分工明确在一个大型项目中

Python开发经验总结:提高代码可维护性和可扩展性的实践Python开发经验总结:提高代码可维护性和可扩展性的实践Nov 22, 2023 pm 12:22 PM

Python开发经验总结:提高代码可维护性和可扩展性的实践在软件开发过程中,我们经常会遇到需求变更、功能迭代等情况,因此代码的可维护性和可扩展性成为了开发过程中必须重视的问题。特别是在Python开发中,如何提高代码的可维护性和可扩展性成为了开发者们共同关注的议题。本文将会总结一些提高Python代码可维护性和可扩展性的实践,希望可以给Python开发者们带

如何解决Python的代码的可扩展性差错误?如何解决Python的代码的可扩展性差错误?Jun 25, 2023 am 09:51 AM

Python作为一门高级编程语言,被广泛应用于数据分析、机器学习、Web开发等领域。然而,随着代码规模不断扩大,Python程序的可扩展性问题也逐渐显现出来。可扩展性差错误是指Python程序在某些情况下不能很好地适应需求变化,无法对大规模数据进行处理,导致程序运行效果不佳。太多的依赖、糟糕的代码结构、缺乏文档等都是Python程序可扩展性差错误的罪魁祸首。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),