Reading-Notes
code fellows 301
Read: 06 - NODE.JS
Reading
An Introduction to Node.js on sitepoint.com
-
Node.js is a Javascript runtime built on chrome’s v8 javascript engine.
-
Chrome’s v8 engine is an open-source JavaScript engine that runs on google chrome and similar based web browsers.
-
Being a JavaScript runtime means that Node.js is a program that can be used to execute JavaScript on our computers.
-
Npm is a package manager that comes bundled with Node.
-
I am running node V14.17.4.
-
I am running npm version 7.23.0.
- Use this command to instal jshint:
npm install -g jshint - Node is used to automate the process of developing a modern JavaScript file.
6 Reasons for Pair Programming
- 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
-
I find that pair programming really help with learning from my peers.
- Pair programming is when one person drives, types out lines of code, with the directions given to them by a navigator.