官术网_书友最值得收藏!

Module basics

In this section, you will finally learn some Node.js code, and we'll kick things off by talking about modules inside Node. Modules are units of functionality, so imagine I create a few functions that do something similar, such as a few functions that help with math problems, for example, add, subtract, and divide. I could bundle those up as a module, call it Andrew-math, and other people could take advantage of it.

Now, we'll not be looking at how to make our own module; in fact, we will be looking at how we can use modules, and that will be done using a function in Node, called require(). The require() function will let us do three things:

  • First, it'll let us load in modules that come bundled with Node.js. These include the HTTP module, which lets us make a web server, and the fs module, which lets us access the filesystem for our machine.
We will also be using require() in later sections to load in third-party libraries, such as Express and Sequelize, which will let us write less code.
  • We'll be able to use prewritten libraries to handle complex problems, and all we need to do is implement require() by calling a few methods.
  • We will use require() to require our very own files. It will let us break up our application into multiple, smaller files, which is essential for building real-world apps.

If you have all of your code in one file, it will be really hard to test, maintain, and update. Now, require() isn't that bad. In this section, we'll explore the first use case for require().

主站蜘蛛池模板: 英山县| 马龙县| 浮梁县| 新邵县| 休宁县| 凌海市| 墨竹工卡县| 伊金霍洛旗| 贵德县| 宁明县| 哈巴河县| 类乌齐县| 靖安县| 改则县| 景谷| 雷波县| 新绛县| 全南县| 平武县| 运城市| 花莲市| 无锡市| 城步| 华安县| 辰溪县| 修水县| 德化县| 廊坊市| 建平县| 东方市| 固镇县| 镶黄旗| 镇雄县| 微山县| 富阳市| 通榆县| 赤城县| 班玛县| 如东县| 济阳县| 宣武区|