JavaScript Modules within NodeJS

Documentation: https://nodejs.org/api/modules.html

To call a module:

    const express = require("express");

Use the require syntax to get a file.

Within the file use:

    module.exports = myFunctionName