EventGet 50% off your ticket to MongoDB.local NYC on May 2. Use code Web50!Learn more >>
MongoDB Developer
MongoDB
plus
Sign in to follow topics
MongoDB Developer Centerchevron-right
Developer Topicschevron-right
Productschevron-right
MongoDBchevron-right

Building Remix Applications with the MongoDB Stack

Joel Lord4 min read • Published May 05, 2023 • Updated Apr 02, 2024
MongoDBJavaScript
Facebook Icontwitter iconlinkedin icon
Rate this article
star-empty
star-empty
star-empty
star-empty
star-empty
The JavaScript ecosystem has stabilized over the years. There isn’t a new framework every other day, but some interesting projects are still emerging. Remix is one of those newer projects that is getting a lot of traction in the developer communities. Remix is based on top of React and lets you use the same code base between your back end and front end. The pages are server-side generated but also dynamically updated without full page reloads. This makes your web application much faster and even lets it run without JavaScript enabled. In this tutorial, you will learn how to use it with MongoDB using the new MongoDB-Remix stack.

Requirements

For this tutorial, you will need:

About the MongoDB-Remix stack

Remix uses stacks of technology to help you get started with your projects. This stack, similar to others provided by the Remix team, includes React, TypeScript, and Tailwind. As for the data persistence layer, it uses MongoDB with the native JavaScript driver.

Getting started

Start by initializing a new project. This can be done with the create-remix tool, which can be launched with npx. Answer the questions, and you will have the basic scaffolding for your project. Notice how we use the --template parameter to load the MongoDB Remix stack (mongodb-developer/remix) from Github. The second parameter specifies the folder in which you want to create this project.
This will start downloading the necessary packages for your application. Once everything is downloaded, you can cd into that directory and do a first build.
You’re almost ready to start your application. Go to your MongoDB Atlas cluster (loaded with the sample data), and get your connection string.
At the root of your project, create a .env file with the CONNECTION_STRING variable, and paste your connection string. Your file should look like this.
At this point, you should be able to point your browser to http://localhost:3000 and see the application running.
Voilà! You’ve got a Remix application that connects to your MongoDB database. You can see the movie list, which fetches data from the sample_mflix database. Clicking on a movie title will bring you to the movie details page, which shows the plot. You can even add new movies to the collection if you want.

Exploring the application

You now have a running application, but you will likely want to connect to a database that shows something other than sample data. In this section, we describe the various moving parts of the sample application and how you can edit them for your purposes.

Database connection

The database connection is handled for you in the /app/utils/db.server.ts file. If you’ve used other Remix stacks in the past, you will find this code very familiar. The MongoDB driver used here will manage the pool of connections. The connection string is read from an environment variable, so there isn’t much you need to do here.

Movie list

In the sample code, we connect to the sample_mflix database and get the first 10 results from the collection. If you are familiar with Remix, you might already know that the code for this page is located in the /app/routes/movies/index.tsx file. The sample app uses the default naming convention from the Remix nested routes system.
In that file, you will see a loader at the top. This loader is used for the list of movies and the search bar on that page.
You can see that the application connects to the sample_mflix database and the movies collection. From there, it uses the find method to retrieve some records. It queries the collection with an empty/unfiltered request object with a limit of 10 to fetch the databases' first 10 documents. The MongoDB Query API provides many ways to search and retrieve data.
You can change these to connect to your own database and see the result. You will also need to change the MovieComponent (/app/components/movie.tsx) to accommodate the documents you fetch from your database.

Movie details

The movie details page can be found in /app/routes/movies/$movieId.tsx. In there, you will find similar code, but this time, it uses the findOne method to retrieve only a specific movie.
Again, this code uses the Remix routing standards to pass the movieId to the loader function.

Add movie

You might have noticed the Add link on the left menu. This lets you create a new document in your collection. The code for adding the document can be found in the /app/routes/movies/add.tsx file. In there, you will see an action function. This function will get executed when the form is submitted. This is thanks to the Remix Form component that we use here.
The code retrieves the form data to build the new document and uses the insertOne method from the driver to add this movie to the collection. You will notice the redirect utility at the end. This will send the users to the newly created movie page after the entry was successfully created.

Next steps

That’s it! You have a running application and know how to customize it to connect to your database. If you want to learn more about using the native driver, use the link on the left navigation bar of the sample app or go straight to the documentation. Try adding pages to update and delete an entry from your collection. It should be using the same patterns as you see in the template. If you need help with the template, please ask in our community forums; we’ll gladly help.

Facebook Icontwitter iconlinkedin icon
Rate this article
star-empty
star-empty
star-empty
star-empty
star-empty
Related
Quickstart

Aggregation Framework with Node.js 3.3.2 Tutorial


Aug 22, 2023 | 9 min read
Quickstart

Introduction to Multi-Document ACID Transactions in Python


Sep 23, 2022 | 10 min read
Tutorial

Introduction to LangChain and MongoDB Atlas Vector Search


Jan 12, 2024 | 5 min read
Article

Using AWS Rekognition to Analyse and Tag Uploaded Images


Jan 23, 2024 | 1 min read
Table of Contents