Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
264 changes: 264 additions & 0 deletions Bootcamp3/README.md

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Bootcamp3/client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Welcome to Bootcamp #3 - Please read the README file to get started</h1>
</body>
</html>
20 changes: 20 additions & 0 deletions Bootcamp3/links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
links.txt
------------------------------------------

Middleware:
https://www.safaribooksonline.com/blog/2014/03/10/express-js-middleware-demystified/

Express Request Object:
req.body - http://expressjs.com/en/4x/api.html#req.body

Express Response Object:
res.json - http://expressjs.com/en/4x/api.html#res.json
res.send - http://expressjs.com/en/4x/api.html#res.send
res.status - http://expressjs.com/en/4x/api.html#res.status


Async Await Tutorials - Note they may collapse functionality into one file - which we do not for this assignment - we are building an architecture for a larger application.
https://www.robinwieruch.de/mongodb-express-node-rest-api
https://www.thepolyglotdeveloper.com/2019/02/building-rest-api-mongodb-mongoose-nodejs/
https://alligator.io/nodejs/crud-operations-mongoose-mongodb-atlas/

Loading