NODE 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 applications, command-line programs, or any kind of automation that developers wish to perform. Making web servers
What is a REPL?
A read–eval–print loop (REPL), also termed an interactive toplevel or language shell, is 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 27, 2009
What back end languages have you heard of?
Python, JavaScript, C++, Ruby, PhP
What is a computer process?
Any running program on computer
the instance of a computer program that is being executed by one or many threads
Roughly how many computer processes are running on your host operating system (Task Manager or Activity Monitor)?
135
Why should a full stack Web developer know that computer processes exist?
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. As a global, it is always available to Node.js applications without using require()
How do you access the process object in a Node.js program?
console.log(process)
In terminal, use node nameOfFile
What is the data type of process.argv in Node.js?
Array
What is a JavaScript module?
A javascript file containing code
What values are passed into a Node.js module’s local scope?
exports, require, module, __filename, __dirname
Give two examples of truly global variables in a Node.js program.
Process, console, setInterval, setTimeout
What is the purpose of module.exports in a Node.js module?
To be able to separate functions into their own file and make it easier to use in other files.
How do you import functionality into a Node.js module from another Node.js module?
require() function to import each of the functions defined
What is the JavaScript Event Loop?
concurrency model based on an event loop, which is responsible for executing the code, collecting and processing events, and executing queued sub-tasks.
Runs everything in stack, checks queue, pushes everything from stack, keep looping
What is different between “blocking” and “non-blocking” with respect to how code is executed?
Code that is blocked/slow will prevent other code from being executed.
Non Blocked code/asynchronous code will run multiple code at the same time
What is a directory?
A folder
What is a relative file path?
Relative path is a path relative to the current page’s path location
What is an absolute file path?
a path that starts from the root of the Drive to the destination
What module does Node.js include for manipulating the file system?
File system module
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?
Asynchronous (does multiple codes at once)
What is NPM?
Node Package Manager. npm is the world’s largest software registry. use npm to share and borrow packages
What is a package?
A directory with one or more files within. Reusable code compiled within a directory
How can you create a package.json with npm?
npm init –yes or npm init -y
What is a dependency and how do you add one to a package?
A dependency is another package that your package needs in order to work.
Include the dependency after npm install
What happens when you add a dependency to a package with npm?
Downloads file and
How do you add express to your package dependencies?
Npm install express
What Express application method starts the server and binds it to a network PORT?
Listen method