Node.js Flashcards
What is Node.js
Node.js is a program that allows JavaScript to be run outside of a web browser.
What can Node.js be used for?
It is commonly used to build back ends for Web apps, command-line programs, or any kind of automation that developers wish to perform.
What is REPL?
Read-Eval-Print Loop
When was Node.js created?
2009 by Ryan Dahl
What other back end languages have you heard of?
Ruby, PHP, Java, c#, Python, C, C++, Swift (Not common for back end though feasible), Objective C (not common for back end though feasible), JavaScript, Perl, Go, Erlang, Elixir.
What is CLI?
Command Line Interface
What is GUI?
Graphical User Interface
Give at least one use case for each command listed in this exercise: man cat ls pwd echo touch mkdir mv rm cp
man: Look up manuals
cat: Concatenate files and print on the standard output.
ls: list items in the directory.
pwd: print name of current/working directory.
echo: Display a line of text
touch: Make new files or update timestamps.
mkdir: Makes new directories
mv: Move (rename) files
rm: Remove files or directories.
cp: Copy files or directories.
What are the three virtues of a great programmer?
impatience, laziness, hubris.
What is a computer process?
The instance of a computer program that is being executed by one or many threads. It contains the program code and its activity.
Roughly how many computer processes are running on your host operating system (Task Manager or Activity Monitor)?
300
101 Windows Processes
98 Background Processes
11 Apps
Why should a full stack Web developer know that computer processes exist?
Because we are making multiple processes work together to form one application.
What is the process object in a Node.js program?
It is a global that provides information about, and control over, the current Node.js process. As a global, it is always available to Node.js applications without using require().
It is also an instance of EventEmitter.
How do you access the process object in a Node.js program?
node command then process
What is the data type of process.argv in Node.js?
An array of strings
What is a JavaScript Module?
It is a single .js file
What values are passed into a Node.js module’s local scope?
\_\_dirname \_\_filename exports module require()
Give two examples of truly global variables in a Node.js program?
clear immediate function setInterval setTimeout process global
What is the purpose of module.exports in a Node.js module?
export the data inside the file to another module.
How do you import functionality into a Node.js module from another Node.js module?
assign require(‘./filename’); to a new variable. const banana = require(./banana);
What is the JavaScript Event Loop?
A loop that checks the stack and the task queue and pushes the task queue onto the stack once its clear.
What is different between “blocking” and “non-blocking” with respect to how code is executed?
Blocking clogs up the stack and prevents anything else from happening until that code is done running. Non-blocking pushes code into the api then into the task queue to be run once it’s completed its processing leaving the user with the ability to continue working.
What is a directory?
A folder which allows users to group files into separate containers.
What is a relative file path?
A location that is relative to a current directory. Also known as a folder.
What is an absolute file path?
An absolute file path always contains the root (/) element and the complete directory list required to locate the file.
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?
fs.writeFile
Are file operations using the fs module synchronous or asynchronous?
Both.