Node.js Flashcards
What is a CLI?
command line interface
What is a GUI?
graphical user interface
Give at least one use case for each of the commands listed in this exercise.man
manual -> look up manual for specific commands
Give at least one use case for each of the commands listed in this exercise.cat
Print standard output of a file or concatenate content of files and print out
Give at least one use case for each of the commands listed in this exercise.ls
List out current files and directory within the current directory
Give at least one use case for each of the commands listed in this exercise.pwd
Print working directory
Give at least one use case for each of the commands listed in this exercise.echo
display line of text
Give at least one use case for each of the commands listed in this exercise.touch
make file timestamp
Give at least one use case for each of the commands listed in this exercise.mkdir
Create new directory
Give at least one use case for each of the commands listed in this exercise.mv
Move or rename a file or directory
mv old_name new_name
Give at least one use case for each of the commands listed in this exercise.rm
Remove (delete) a file or directory (-r)
Give at least one use case for each of the commands listed in this exercise.cp
Make copy of file or directory (-r)
What is Node.js?
JavaScript runtime environment
What can Node.js be used for?
to built back end
automated scripts
command line programs
What is a REPL?
read-eval-print loop