reading-notes

These are my reading notes for Code Fellows


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

Home

Reading Notes Code 301: Day 6

Node.js

Node.js is an event-based, non-blocking, asynchronous I/O runtime that uses Google’s V8 JavaScript engine and libuv library.

(source)

Node.js is a program we can use to execute JavaScript on our computers. In other words, it’s a JavaScript runtime. (source)

Pair Programming