Node.JS and Pair Programming
Node.JS
-
What is node.js? Node is a program used to that can be used to execute JavaScript in a browser.
-
In your own words, what is Chrome’s V8 JavaScript Engine? it is the engine that makes takes JavaSript prompts from a website and makes them readable to the native machine on the client’s end.
-
What does it mean that node is a JavaScript runtime? Runtime refers to where the code is executed when you run it, so essentially node is where the JavaScript code is executed in a browser.
-
What is npm? NPM is a package manager that comes bundled with Node.
-
What version of node are you running on your machine? v16.14.2
-
What version of npm are you running on your machine? 8.10.0
-
What command would you type to install a library/package called ‘jshint’? npm install -g jshint
-
What is node used for? It is used for automating the process of developing a modern JavaScript application.
Pair Programming
-
What are the 6 reasons for pair programming? Greater efficiency, engaged collaboration, the ability to learn from fellow students, improved socail skills, job interview preparedness, and work environment readiness.
-
In your experience, which of these reasons have you found most beneficial? Engaged collaboration has been the biggest thing for me in terms of what I have gotten out of pair programming in the past. I think the bouncing ideas off of each other leads to new and interesting coding solutions.
-
How does pair programming work? There is a driver and a navigator. The driver is the only one actually touching the code, and the navigator directs the driver what to type in. The navigator can also be the one that is researching how to solve a specific bug.