Node.js Flashcards
What is Node.js?
built on chrome’s JavaScript runtime for building fast and scalable network applications. uses event-driven non-blocking I/O model. JavaScript without the browser
What can Node.js be used for?
you can do anything with networking with it, though not suggested for 3d graphics, can only be back-end
What is a REPL?
read-eval-print loop, interactive toplevel or language shell. Takes single user inputs, executers them, and returns the result to the user, and is executed piecewise. Ex. console
When was Node.js created?
May 27, 2009
What back end languages have you heard of?
ruby, python, php, sql (a database for languages), java, JavaScript
What is a computer process?
a process contains a program code and its activity, it is executers in one or many threads.
Roughly how many computer processes are running on your host operating system (Task Manager or Activity Monitor)?
Currently I have 226
Why should a full stack Web Developer know that computer processes exist?
A full stack web developer helps make multiple processes work together to form one application, so knowing about computer processes is important, especially since we’re using clients, servers, and databases
How do you access the process object in the Node.js program?
node and the node command process, cause it’s global
What is the data type of process.argv in Node.js?
array of strings
What is a JavaScript module?
a file containing related code, used to be called scripts
What values are passed into a Node.js module’s local scope?
exports, module, __filename, __dirname, require
Give two examples of truly global variables in a Node.js program.
None of them are truly global, but __filename, __dirname, exports, module, and require are global in the scope of modules
Give two examples of truly global variables in a Node.js program.
None of them are truly global, but __filename, __dirname, exports, module, and require are global in the scope of modules. console & process are truly global
What is the purpose of module.exports in a Node.js module?
export a file to another file
How do you import functionality into a Node.js module from another Node.js module?
require function, require()
What is the JavaScript Event Loop?
constant process of callstack being put back on the callstack queue
What is different between “blocking” and “non-blocking” with respect to how code is executed?
non-blocking is when the queue is cleared and can continue, blocking is when something is on the callstack
What is directory?
a folder, a collection of files created for a purpose
What is a relative file path?
location that is relative to a current directory
What is an absolute file path?
contains the root element and the complete directory list required to locate a file
What module does Node.js include for manipulating the file system?
fs (file system) module
What method is available in Node.js fs module for writing data to a file?
writeFile method
What is a client?
wants data
What is a server?
gives data
Which HTTP method does a browser issue to a web server when you visit a URL?
GET
What is the first line of an HTTP request message?
method, request target, target
What is on the first line of an HTTP response message?
http version number, status code, reason phrase
What are HTTP headers?
additional information of key value pairs to give. let client and the server pass additional information with an http request or response
Is a body required for a valid HTTP message?
No, Get for without body, Post for with body
What is NPM?
package manager (website, registry, command line)
What is a package?
packages is a directory with one or more files in them, including package.json
How can you create a package.json with npm?
cd /path/to/package , npm init –yes
What is a dependency and how do you add one to a package?
npm install , packages required by your application in production.
What happens when you add a dependency to a package with npm?
npm will download dependencies and devDependencies that are listed in package. json that meet the semantic version requirements listed for each.