Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.32 KB

File metadata and controls

40 lines (27 loc) · 1.32 KB

code fellows 301

Read: 06 - NODE.JS

Reading

  1. Node.js is a Javascript runtime built on chrome’s v8 javascript engine.

  2. Chrome’s v8 engine is an open-source JavaScript engine that runs on google chrome and similar based web browsers.

  3. Being a JavaScript runtime means that Node.js is a program that can be used to execute JavaScript on our computers.

  4. Npm is a package manager that comes bundled with Node.

  5. I am running node V14.17.4.

  6. I am running npm version 7.23.0.

  7. Use this command to instal jshint:

npm install -g jshint
  1. Node is used to automate the process of developing a modern JavaScript file.
  1. The six reasons for pair programming:

list provided by Code Fellows

  • Greater Efficiency
  • Engaged Collaboration
  • Learning from Fellow Students
  • Social Skills
  • Job Interview Readiness
  • Work Environment Readiness
  1. I find that pair programming really help with learning from my peers.

  2. Pair programming is when one person drives, types out lines of code, with the directions given to them by a navigator.