View on GitHub

reading-notes

read 6

NODE.JS

What’s Node.js:

What is Chrome V8?

Chrome V8 executes JavaScript code. Node.js is built on top of Chrome V8 and is a widely used runtime environment for serverless JavaScript functions. However, there are advantages to running functions directly on V8.

What does it mean that node is a JavaScript runtime?

Node. js is a JavaScript runtime environment that achieves low latency and high throughput by taking a “non-blocking” approach to serving requests. In other words, Node. js wastes no time or resources on waiting for I/O requests to return.

What is npm?

The free npm Registry has become the center of JavaScript code sharing, and with more than one million packages, the largest software registry in the world.

What version of node are you running on your machine?

v12.21.0

What version of npm are you running on your machine?

7.16.0

What is node used for?

Node. js is primarily used for non-blocking, event-driven servers, due to its single-threaded nature. It’s used for traditional web sites and back-end API services, but was designed with real-time, push-based architectures in mind.

6 Reasons for Pair Programming

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

In your experience, which of these reasons have you found most beneficial?

I think the Social Skills is connected between all side which i mentioned.

How does pair programming work?