Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 859 Bytes

File metadata and controls

19 lines (11 loc) · 859 Bytes

Node, React, and Mongoose database Tutorial

Signup for free at mongodb.com

This is a continuation from the previous tutorial "Node and React JS Tutorial"

This tutorial will cover the following:

  1. Setting up Clusters, Collections, and Documents from Mongodb.com

  2. Creating a database called node_twitterclone, creating collections called tweets and users, and then manually inserting a document into the users collection table.

  3. Setting up Schemas for our two tables: tweets and users.

  4. Writing code to save a user into the users table, and saving tweets into the tweets table.

  5. Writing code to retreive our tweets data, as well as joining the users table inable to access that data.

  6. Setting up a form to submit the tweet data.

  7. Finally, a demo of the finished project by running the backend and the frontend servers to send tweets.