Node Intro Flashcards

1
Q

When was Node created?

A

May 27th, 2009

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Node.js?

A

Node.js is a set of libraries for JavaScript which allows it to be used outside of the browser. It is primarily focused on creating simple, easy-to-build network clients and servers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What can Node.js be used for?

A

Building scalable web apps

Anytime you want to use JavaScript outside the browser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a REPL?

A

Read-eval-print loop (Node.js comes bundled with a REPL)
-interactive computer programming environment that takes in single user inputs, evaluates, and returns them
Read − Reads user’s input, parses the input into JavaScript data-structure, and stores in memory.
Eval − Takes and evaluates the data structure.
Print − Prints the result.
Loop − Loops the above command until the user presses ctrl-c twice.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly