NODE.JS
an introduction to node js
- What is node.js?
is a JavaScript runtime built on Chrome’s V8 JavaScript engine.
- In your own words, what is Chrome’s V8 JavaScript Engine?
V8 is a high-performance JavaScript and WebAssembly engine built in C++ by Google. It is found in Chrome and Node.js, among other places.like:Brave, Opera, and Vivaldi.
- What does it mean that node is a JavaScript runtime?
that Node.js is a program we can use to execute JavaScript on our computers.
- What is npm?
The world’s largest software registry is npm. Many businesses use npm to handle private development, while open source developers from all around the world use it to exchange and borrow packages.
- What version of node are you running on your machine?
v14.17.3
- What version of npm are you running on your machine?
7.24.0
- What command would you type to install a library/package called ‘jshint’?
npm install -g jshint
8.What is node used for?
bundling your JavaScript files and dependencies into static assets, to running tests, or automatic code linting and style checking.
resource: resource
6 Reasons for Pair Programming
- 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?
Learning from fellow students
- How does pair programming work?
first we have two roles: the Driver and the Navigator,he Driver is the programmer who is typing and the only one whose hands are on the keyboard,The Navigator uses their words to guide the Driver but does not provide any direct input to the computer.
Things I want to know more about