reading-notes

My reading notes


Project maintained by brandomoki Hosted on GitHub Pages — Theme by mattgraham

NODE.JS

Introduction to NODE.JS

  1. What is node.js?
    • Node.js is a runtime built on googles V8 JavaScript Engine
  2. In your own words, what is Chrome’s V8 JavaScript Engine?
    • a compiler that translates JavaScript to Native machine code
  3. What does it mean that node is a JavaScript runtime?
    • This is where your code is executed
  4. What is npm?
    • Node Package Manager
  5. What version of node are you running on your machine?
    • 8.12.2
  6. What command would you type to install a library/package called ‘jshint’?
    • npm instal -g jshint
  7. What is node used for?
    • Node allows developer to process code directly on their computer instead of in a browser.

Reason for Pair Programing

  1. What are the 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
  2. In your experience, which of these reasons have you found most beneficial?
    • In my experience Learning from fellow students is most beneficial
  3. How does pair programming work?
    • driver and navigator driver codes while navigator explains to driver what is being coded focuses on the logic while not touching the keyboard