node.js Flashcards
1
Q
CLI
A
command line interface
2
Q
GUI
A
graphical user interface
3
Q
man
A
manual command
4
Q
ls pwd
A
list and present working directory
5
Q
echo
A
print a string to the terminal or create it in txt document
6
Q
touch
A
update or create file
7
Q
mkdir
A
make directories
8
Q
mv
A
rename directory or move it
9
Q
rm
A
remove instantly. use with caution
10
Q
cp
A
copy files
11
Q
what is Node.js
A
JavaScript environment where you can execute JS
asynchronous event driven JS runtime
12
Q
What can Node.js be used for
A
build scalable network applications
13
Q
REPL
A
read eval print loop
14
Q
process object in node
A
a global object that provides information about and control over the current node.js process
15
Q
how do you access the process object?
A
console.log(process)