Node Flashcards
What is Node.js?
a program that allows JavaScript to be run outside of a web browser.
What can Node.js be used for?
commonly used to build back ends for Web applications. designed to build scalable network applications.
What is a REPL?
Read-eval-print loop. a simple interactive computer programming environment that takes single user inputs, executes them, and returns the result to the user
When was Node.js created?
May 27th, 2009
What back end languages have you heard of?
Ruby, Python, PHP
What is a computer process?
the instance of a computer program that is being executed by one or more threads.
Roughly how many computer processes are running on your host operating system (Task Manager or Activity Monitor)?
500
Why should a full stack Web developer know that computer processes exist?
because full stack Web development is based on making multiple processes work together to form one application.
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?
process object is global.
What is the data type of process.argv in Node.js?
array