- What is node.js?
it's a JavaScript runtime built on Chrome’s V8 JavaScript engine
- In your own words, what is Chrome’s V8 JavaScript Engine?
is the JS scripting engine
- What does it mean that node is a JavaScript runtime?
it means that we can run js outside of the browser
- What is npm?
node package manager, QED
- What version of node are you running on your machine?
v20.5.0
- What version of npm are you running on your machine?
9.8.0
- What command would you type to install a library/package called ‘jshint’?
npm install -g jshint
- What is node used for?
used to build a test environment
- What are the 6 reasons for pair programming?
- Greater efficiency
- Engaged collaboration
- Learning from fellow students
- Social skills
- Job interview readiness
- Work environment readiness
- In your experience, which of these reasons have you found most beneficial?
Work environment readiness
- How does pair programming work?
- Pair programming involves two roles:
- The Driver is the one typing and writing the code
- The Navigator thinks about the big picture and guides the Driver, but does not write code
- The Navigator can also look up solutions and documentation
- The two programmers switch off roles periodically
- Google Bard and ChatGPT