Nodejs + Express

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

Asynchronous

Meaning that things can happen independently of the main program flow

2
New cards

Synchronous, single-threaded

JavaScript is ___________ by default, and is ________-threaded.

3
New cards

Callback

A simple function that’s passed as a value to another function, and will only be executed when the event happens

4
New cards

Higher-Order Function

A function that can take other functions as arguments or return them as output

5
New cards

First-Class Functions

Functions that can be treated as values; allowing them to be assigned to variables, passed as arguments, returned from functions, and stored in data structures, just like any other data type

6
New cards

It is similar to a node package manager, and is the tool for connecting to the repository that contains all the Node.js programs, plugins, modules, etc.

What is npm used for?

7
New cards

-g flag

What denotes a global install in npm?

8
New cards

Contains metadata about the Node project, handles dependencies of the project

What is in a package.json file?

9
New cards

Short for “file system”, is a built-in Node module for file I/O operations

What is the fs module?

10
New cards

Used to import modules, JSON files, or local files into a Node.js file

require()

11
New cards

For creating template literals, allows direct embedding of variables through the syntax ${variable}

What are back-ticks ` used for in JS?

12
New cards

Extensible Markup Language

What is XML?

13
New cards

What is AJAX?

Asynchronous Javascript And Xml

14
New cards