Node.js Flashcards
What is Node.js?
a JavaScript runtime build on Chrome’s V8 JavaScript engine
What can Node.js be used for?
its used for backend and command line scripts
What is a REPL?
Read, Evaluate, Print, Loop
What is the process object in a Node.js program?
The process object is a global that provides information about, and control over, the current Node.js process
How do you access the process object in a Node.js program?
reference it
What is the data type of process.argv in Node.js?
Array of strings
What is a JavaScript module?
a file that contains related code
What values are passed into a Node.js module’s local scope?
exports, require, filename, dirname
Give two examples of truly global variables in a Node.js program.
process, global
What is the purpose of module.exports in a Node.js module?
To export a piece of code so other files are able to access it
How do you import functionality into a Node.js module from another Node.js module?
you add module.exports to whatever code you want to export and then require method to where you want to use it
What is the JavaScript Event Loop?
a runtime model that is responsible for executing code, collecting and processing events and executing queued sub-tasks.
What is different between “blocking” and “non-blocking” with respect to how code is executed?
Blocking refers to operations that block further execution until that operation finishes while non-blocking refers to code that doesn’t block execution.
What is a directory?
A special file that lists other files and directories
What is a relative file path?
relative file path tells you how to get to a file from your current location
What is an absolute file path?
location of a file from the root directory
What module does Node.js include for manipulating the file system?
fs
What method is available in the Node.js fs module for writing data to a file?
writeFile
What is NPM?
npm is a registry that contains code packages
What is a package?
a file or directory that is described by a package.json file
How can you create a package.json with npm?
npm init
What is a dependency and how to you add one to a package?
a dependency is something that your package depends on and to add one use npm install
What happens when you add a dependency to a package with npm?
it updates your package json and downloads the package from the npm registry
How do you add express to your package dependencies?
npm install express –save
What Express application method starts the server and binds it to a network PORT?
listen
How do you mount a middleware with an Express application?
use method
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
request and response
What is the appropriate Content-Type header for HTTP messages that contain JSON in their bodies?
appication/json
What does the express.json() middleware do and when would you need it?
This method is used to parse the incoming requests with JSON body and is based upon the bodyparser. You would need it when you want to receive JSON data and add it to a data model
What is the significance of an HTTP request’s method?
it defines the action to be performed
What does express.static() return?
it returns a path
What is the local __dirname variable in a Node.js module?
The directory name of the current module
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.