Node Flashcards
What is a JavaScript module?
A file
What values are passed into a Node.js module’s local scope?
exports, module, require, filename, dirname
Give two examples of truly global variables in a Node.js program.
process, console, global
What is the purpose of module.exports in a Node.js module?
to expose to other modules
How do you import functionality into a Node.js module from another Node.js module?
calling a required() to pull the exports from the other file
What module does Node.js include for manipulating the file system?
fs module
What module does Node.js include for manipulating the file system?
fs module
Are file operations using the fs module synchronous or asynchronous?
both
What does the express.json() middleware do and when would you need it?
parses json when you want to receive json from clients