This tutorial will cover the following:
-
Setting up Clusters, Collections, and Documents from Mongodb.com
-
Creating a database called node_twitterclone, creating collections called tweets and users, and then manually inserting a document into the users collection table.
-
Setting up Schemas for our two tables: tweets and users.
-
Writing code to save a user into the users table, and saving tweets into the tweets table.
-
Writing code to retreive our tweets data, as well as joining the users table inable to access that data.
-
Setting up a form to submit the tweet data.
-
Finally, a demo of the finished project by running the backend and the frontend servers to send tweets.