HTTP, NPM, NODE, Express Flashcards
What is a client?
A service requestor.
What is a server?
A service provider.
Which HTTP method does a browser issue to a web server when you visit a URL?
a get request
What three things are on the start-line of an HTTP request message?
The method, verbs i.e. GET PUT, POST or a noun HEAD, OPTIONS, the target (URL), HTTP version
What three things are on the start-line of an HTTP response message?
Version ie. (HTTP/1.1),
status code (404),
status text i.e. 404 Not found (for human reading)
What are HTTP headers?
A string followed by colons and a value.
A key value pair.
Where would you go if you wanted to learn more about a specific HTTP Header?
MDN
Is a body required for a valid HTTP request or response message?
No. Their could just be a confirmation in the start line.
What is AJAX?
Asynchronus processing request, to load data with having a user reload a page.
What does the AJAX acronym stand for?
Asynchronous JavaScript And XML
Which object is built into the browser for making HTTP requests in JavaScript?
XMLHttpRequest object.
What event is fired by XMLHttpRequest objects when they are finished loading the data from the server?
load event.
Bonus Question: An XMLHttpRequest object has an addEventListener() method just like DOM elements. How is it possible that they both share this functionality?
Prototype inheritance from the window.
What is NPM?
Node-package manager.
What is a package?
A directory with one or more files, of a chunk of reusable code.
How can you create a package.json with npm?
What is a dependency and how do you add one to a package?
A package that your package requires you to use. Version control, majorversion(breaking changes).minorversion(adds functionality backwards compat).bugfixversion(fixes something, should always update this)
What happens when you add a dependency to a package with npm?
It gets put into your package.json, and downloads the package and all dependencies in your node-modules.
What are some other popular package managers?
Yarn and PNPM.
DEV dependencies.
Packages for when your in development, so they can easily removed at launch.
Scripts in npm?
Scripts allow you to create shortcut keywords to run different packages.
What is Express useful for?
Handling server requests.
How does Express fit into a full-stack web application?
It helps handle your server requests, to get data from databases and send it to the client.
How do you add express to your package dependencies?
npm i express
What Express application method starts the server and binds it to a network PORT?
.listen , we use port 8080 / With httppie you can just do < http :8080 > It assumes GET and localhost
What is Express middleware?
Function calls that respond to requests made to express.
What is Express middleware useful for?
Modify your data, return an html page, send a file to be downloaded? Lots of things?
How do you mount a middleware with an Express application?
You pass a directory as an argument and when the routing goes through this code is executed with the use method.
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
The request and response objects.
Whats an api endpoint?
A specific URL.
What is the appropriate Content-Type header for HTTP messages that contain JSON in their bodies?
application/json.
What is the significance of an HTTP request’s method?
A generalization of what a server should do.
What does the express.json() middleware do and when would you need it?
Parses incoming JSON.
What is SQL and how is it different from languages like JavaScript?
It’ s declarative, it does what you ask.
How do you retrieve specific columns from a database table?
select followed by the column and then a from what table
How do you filter rows based on some specific criteria?
use the where keyword followed by column and your comparator statement.
What are the benefits of formatting your SQL?
READABILITY!
What are four comparison operators that can be used in a where clause?
=, !=, <, >
How do you limit the number of rows returned in a result set?
the limit keyword followed by a number, must be last statement.
How do you retrieve all columns from a database table?
select *
from “tablename”
How do you control the sort order of a result set?
order by keyword ,defaults ascending, specify <desc> after the column name.</desc>
How do you add a row to a SQL table?
insert into “tablename” (“columnname”, “columnname”)
What is a tuple?
A list of values inside parentheses.
How do you add multiple rows to a SQL table at once?
add commas between tuples.
How do you get back the row being inserted into a table without a separate select statement?
returning * will return all sent. Is good to see autogenerated IDs
How do you update rows in a database table?
update <tablename>, set <valuename> = <value>, usually followed by a filter statement
where <attribute> = <value></value></attribute></value></valuename></tablename>
Why is it important to include a where clause in your update statements?
The where clause specifies which rows you should update.
How do you delete rows from a database table?
DELETE
FROM <tableName>
WHERE <attributeName> = <value>
returning *;</value></attributeName></tableName>
How do you accidentally delete all rows from a table?
Forgetting a where statement.
What is a foreign key?
A reference to the primary key of another table.
How do you join two SQL tables?
JOIN <tableName> using (<columnName>)</columnName></tableName>
How do you temporarily rename columns or tables in a SQL statement?
What is the purpose of the Express Static middleware?
to serve basic files to the client.
What does express.static() return?
Returns a response object or calls next.
What are several examples of static files?
CSS, Images, Index.html(when using react), basic javascript. Any files that don’t change and aren’t dynamic like react?
What is a good way to serve application images using Express?
Using relative links to a static image folder. Serving them statically.