Programmer Flashcards
3 virtues of a programmer
Laziness - wants to automate things to reduce energy expenditure
Impatience - create programs that anticipate needs
Hubris - wants to write programs people won’t criticize
Command line - cat
combine and print. (cat test1.txt test2.txt > test12.txt)
Command line - ls
lists contents
Command line - pwd
print working directory
Command line - touch
create file / change recently accessed
Command line - mv
rename files
Command line - rm
remove file
Command line - cp
copy file
What is the process object in a Node.js program?
A global that provides info about the current Node.js process
How do you access the process object in a Node.js program?
It is accessed globally
Data type of process.argv in Node.js?
Array
What happens when you add dependency with npm?
- It gets downloaded
2. It gets added to the dependency list
What is NPM?
Software registry (website, CLI, the registry)
How to create package.json in npm?
npm init –yes
How to add a dependency to a package?
npm install [package-name]