What does express.static() return?
Static files… A middleware has to be a function.
What is the local __dirname variable in a Node.js module?
__dirname is an environment variable that tells you the absolute path of the directory containing the currently executing file.
What does the join() method of Node’s path module do?
The path.join() method joins all given path segments together using the platform-specific separator as a delimiter, then normalizes the resulting path.