node-intro Flashcards
What is Node.js?
Node.js is a scalable event-driven JavaScript runtime designed to be build scalable network applications. Commonly used to run JS outside the browser and build backends for web apps.
What can Node.js be used for?
Node.js can be used for building backends for web applications with JS outside the browser.
What is a REPL?
REPL stands for read-eval-print-loop and it is a way for someone to manipulate an input and get an output. The user enters the input which is then read, evaluated, the result is printed out, and the program restarts and waits for another input.
When was Node.js created?
May 27, 2009 by Ryan Dahl, thirteen years after the first server side JS was created.
What back end languages have you heard of?
Python is the only other backend language I have heard of.