Node.js, cmd, React, SQL (senior) Flashcards
(121 cards)
What is a CLI?
A command-line interface (CLI) processes commands to a computer program in the form of lines of text. The program which handles the interface is called a command-line interpreter or command-line processor.
What is a GUI?
graphical user interface (GUI) is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of text-based user interfaces, typed command labels or text navigation.
man
man is an interface to the on-line reference manuals.
cat
concatenate files and print on the standard output
ls
list local directory
pwd
prints name os current working directory
echo
displays a line of text
touch
changes file timstanp
mkdir
make directory
mv
move or rename
rm
remove
cp
copy
What is Node.js?
a backend language that allows javascript to run outside of browser
What can Node.js be used for?
backend for web applications, command line or automation
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?
java, c, .net, pascal, python, php
What is a computer process?
a task being run by the computer
Roughly how many computer processes are running on your host operating system (Task Manager or Activity Monitor)?
468
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 and knowing about the processing power of each component helps with making a more efficient application
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.
What is the process object in a Node.js program?
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?
by calling process variable
What is the data type of process.argv in Node.js?
array