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

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().

主站蜘蛛池模板: 五河县| 岑溪市| 越西县| 汉源县| 福鼎市| 专栏| 金沙县| 太仆寺旗| 杂多县| 桐城市| 安徽省| 庆云县| 河源市| 县级市| 滕州市| 高阳县| 临夏市| 潼关县| 云安县| 深州市| 汤原县| 绥德县| 鄢陵县| 裕民县| 丹棱县| 通化市| 宣威市| 安远县| 额敏县| 恩施市| 上杭县| 松潘县| 福贡县| 乌拉特中旗| 肃南| 潮州市| 聂拉木县| 青冈县| 锦州市| 东丽区| 东丰县|