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

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

主站蜘蛛池模板: 方山县| 射洪县| 巨野县| 永兴县| 庆阳市| 静安区| 玉林市| 嘉峪关市| 马鞍山市| 湘潭县| 儋州市| 介休市| 锡林浩特市| 彝良县| 屯留县| 丹东市| 海兴县| 宜兰市| 综艺| 沂源县| 林州市| 驻马店市| 湘阴县| 华安县| 长治市| 洪江市| 凤台县| 胶州市| 阜城县| 彰化市| 清丰县| 东光县| 徐闻县| 乾安县| 三原县| 蓝山县| 定州市| 兴义市| 江陵县| 靖宇县| 密云县|