reading-notes

NODE.JS

an introduction to node js

  1. What is node.js? is a JavaScript runtime built on Chrome’s V8 JavaScript engine.
  2. 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.
  3. 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.
  4. 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.
  5. What version of node are you running on your machine? v14.17.3
  6. What version of npm are you running on your machine? 7.24.0
  7. 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

  1. Greater efficiency
  2. Engaged collaboration
  3. Learning from fellow students
  4. Social skills
  5. Job interview readiness
  6. Work environment readiness

Things I want to know more about