reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

code fellows 301

Read: 06 - NODE.JS

Reading

An Introduction to Node.js on sitepoint.com

  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
    
  8. Node is used to automate the process of developing a modern JavaScript file.

6 Reasons for Pair Programming

  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
  2. I find that pair programming really help with learning from my peers.

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