reading-notes

Node.js

Intro to Node

Intro to Node

  1. “Node.js is an event-based, non-blocking, asynchronous I/O runtime that uses Google’s V8 JavaScript engine and libuv library.”
  2. Its a Js engine that runs in chrome and chromium web browsers like brave (what I use)
  3. a runtime is a specific version of an engine
  4. npm is a js package manager
  5. I have node ver v18.9.0
  6. npm ver 8.19.1
  7. “npm install”
  8. node is used to execute our js code in th browser

Pair Programming

6 Reasons for Pair Programming

  1. 6 reasons for pair programming:
    • Greater efficiency
    • Engaged collaboration
    • Learning from fellow students
    • Social skills
    • Job interview readiness
    • Work environment readiness
  2. Using pair programing in my experience has helped to have a second pair of eyes to spot the errors I cant see
  3. Pair programming has 1 person work on the code and another watch and take the lead.