What is node.js?
Node.js is a server-side JavaScript runtime environment that allows developers to run JavaScript code outside of a web browser.
In your own words, what is Chrome’s V8 JavaScript Engine?
The Chrome V8 JavaScript Engine is like a super smart computer brain that helps web browsers understand and run JavaScript code really fast.
What does it mean that node is a JavaScript runtime?
Node being a JavaScript runtime means that it is an environment in which developers can execute JavaScript code outside of a web browser, on a server or a computer, using the V8 engine.
What is npm?
npm stands for “Node Package Manager”, which allows developers to easily install, share, and manage the dependencies (libraries, frameworks, tools, etc.) required for their Node.js projects.
What version of node are you running on your machine?
v19.4.0
What version of npm are you running on your machine?
9.2.0
What command would you type to install a library/package called ‘jshint’?
npm install jshint
What is node used for?
Node.js is used for building server-side applications, command-line tools, and scripts in JavaScript that can run outside the web browser 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?
Engaged collaboration makes coding more fun and engaging. It allows me to focus on the task at hand and not procrastinate.
How does pair programming work?
Pair programming involves two developers working together on a single task, with one writing the code and the other reviewing and providing feedback, in order to improve code quality, knowledge sharing, and collaboration.