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

How to Integrate MongoDB Into Your Next.js App

Ado Kukic, Kushagra Kesav11 min read • Published May 12, 2022 • Updated Feb 27, 2024
Next.jsJavaScript
Facebook Icontwitter iconlinkedin icon
Rate this tutorial
star-empty
star-empty
star-empty
star-empty
star-empty
This tutorial uses the Next.js Pages Router instead of the App Router which was introduced in Next.js version 13. The Pages Router is still supported and recommended for production environments.
Are you building your next amazing application with Next.js? Do you wish you could integrate MongoDB into your Next.js app effortlessly? Do you need this done before your coffee has finished brewing? If you answered yes to these three questions, I have some good news for you. We have created a Next.js<>MongoDB integration that will have you up and running in minutes, and you can consider this tutorial your official guide on how to use it.
In this tutorial, we'll take a look at how we can use the with-mongodb example to create a new Next.js application that follows MongoDB best practices for connectivity, connection pool monitoring, and querying. We'll also take a look at how to use MongoDB in our Next.js app with things like serverSideProps and APIs. Finally, we'll take a look at how we can easily deploy and host our application on Vercel, the official hosting platform for Next.js applications. If you already have an existing Next.js app, not to worry. Simply drop the MongoDB utility file into your existing project and you are good to go. We have a lot of exciting stuff to cover, so let's dive right in!

Next.js and MongoDB with one click

Our app is now deployed and running in production. If you weren't following along with the tutorial and just want to quickly start your Next.js application with MongoDB, you could always use the with-mongodb starter found on GitHub, but I’ve got an even better one for you.
Visit Vercel and you'll be off to the races in creating and deploying the official Next.js with the MongoDB integration, and all you'll need to provide is your connection string.

Prerequisites

For this tutorial, you'll need:
To get the most out of this tutorial, you need to be familiar with React and Next.js. I will cover unique Next.js features with enough details to still be valuable to a newcomer.

What is Next.js?

If you're not already familiar with it, Next.js is a React-based framework for building modern web applications. The framework adds a lot of powerful features — such as server-side rendering, automatic code splitting, and incremental static regeneration — that make it easy to build, scalable, and production-ready apps.
Vercel homepage

Getting started with-mongodb

Next.js has an extensive examples library that shows how you can integrate the framework with various features like GraphQL servers, authentication libraries, and CSS frameworks. The example we'll use for this tutorial is called with-mongodb, and as you might expect, it'll come with everything needed to connect to a MongoDB database.
To create a new Next.js app with MongoDB integration built-in, run the following command in your terminal:
We are using the npx create-next-app command and are passing the --example with-mongodb parameter, which will tell create-next-app to bootstrap our app with the MongoDB integration example. Finally, mflix is the name of our application. You can name your application something else if you'd prefer. Executing this command will take a couple of seconds to download and install all the npm dependencies, but once they're downloaded and installed, navigate to your project directory by running:
And then install all the npm dependencies by running:
In this directory, let's start up our application and see what happens. To start our Next.js app, in the mflix directory, run:
Once the app is built, let's see our app in action by navigating to localhost:3000. Uh-oh. We get an error.
server error
The good news is that the error is fairly descriptive. The reason for this error is that we haven't provided our MongoDB connection string to the Next.js app. Let's do that next.

Connecting MongoDB to Next.js

If we look at our Next.js application directory, we'll find an env.local.example file. Let's rename this file to env.local and open it. This file contains one property that we'll need to fill out: MONGODB_URI.
We'll get this information from our MongoDB Atlas cluster. You can use a local MongoDB installation if you have one, but if you're just getting started, MongoDB Atlas is a great way to get up and running without having to install or manage your MongoDB instance. MongoDB Atlas has a forever free tier that you can sign up for as well as get the sample data that we'll be using for the rest of this tutorial.
To get our MongoDB URI, in our MongoDB Atlas dashboard:
  1. Hit the Connect button.
  2. Then, click the Connect to your application button, and here you'll see a string that contains your URI that will look like this:
If you are new to MongoDB Atlas, you'll need to go to the Database Access section and create a username and password, as well as the Network Access tab to ensure your IP is allowed to connect to the database. However, if you already have a database user and network access enabled, you'll just need to replace the <USERNAME> and <PASSWORD> fields with your information.
For the <DBNAME>, we'll load the MongoDB Atlas sample datasets and use one of those databases.
database deployment
To close out this section, our env.local file should look like this:
To make sure our configuration is correct, let's restart our Next.js app by going to the terminal and building the application again. Run the following command in your terminal:
When the application is built, navigate to localhost:3000 in your browser and you should see the following:
Welcome to Next.js
This is the with-mongodb Next.js app welcome page. If you see the message "You are connected to MongoDB," you are good to go. If you see the message "You are NOT connected to MongoDB," then verify your connection string and make sure that the database user, as well as the network connection, is properly set. If you run into any issues, head over to the MongoDB community forums, and we'll help troubleshoot.

Querying MongoDB with Next.js

Now that we are connected to MongoDB, let's discuss how we can query our MongoDB data and bring it into our Next.js application. Next.js supports multiple ways to get data. We can create API endpoints, get data by running server-side rendered functions for a particular page, and even generate static pages by getting our data at build time. We'll look at all three examples.

Example 1: Next.js API endpoint with MongoDB

The first example we'll look at is building and exposing an API endpoint in our Next.js application. To create a new API endpoint route, we will first need to create an api directory in our pages directory, and then every file we create in this api directory will be treated as an individual API endpoint.
Let's go ahead and create the api directory and a new file in this directory called movies.tsx. This endpoint will return a list of 20 movies from our MongoDB database. The implementation for this route is as follows:
To explain what is going on here, we'll start with the import statement. We are importing our clientPromise method from the lib/mongodb file. This file contains all the instructions on how to connect to our MongoDB Atlas cluster. Additionally, within this file, we cache the instance of our connection so that subsequent requests do not have to reconnect to the cluster. They can use the existing connection. All of this is handled for you!
Next, our API route handler has the signature of export default async (req, res). If you're familiar with Express.js, this should look very familiar. This is the function that gets run when the localhost:3000/api/movies route is called. We capture the request via req and return the response via the res object.
Our handler function implementation calls the clientPromise function to get the instance of our MongoDB database. Next, we run a MongoDB query using the MongoDB Node.js driver to get the top 20 movies out of our movies collection based on their metacritic rating sorted in descending order.
Finally, we call the res.json method and pass in our array of movies. This serves our movies in JSON format to our browser. If we navigate to localhost:3000/api/movies, we'll see a result that looks like this:
Serving movies in JSON format to browser
We can add additional API routes by creating additional files in the api directory. As a homework exercise, why don't you create an API route that returns a single movie based on a user-provided ID?
To give you some pointers, you'll use Next.js Dynamic API Routes to capture the id. So, if a user calls http://localhost:3000/api/movies/573a1394f29313caabcdfa3e, the movie that should be returned is Seven Samurai. Another tip: The _id property for the sample_mflix database in MongoDB is stored as an ObjectID, so you'll have to convert the string to an ObjectID. If you get stuck, create a thread on the MongoDB Community forums and we'll solve it together! Next, we'll take a look at how to access our MongoDB data within our Next.js pages.

Example 2: Next.js pages with MongoDB

In the last section, we saw how we can create an API endpoint and connect to MongoDB with it. In this section, we'll get our data directly into our Next.js pages. We'll do this using the getServerSideProps() method that is available to Next.js pages.
The getServerSideProps() method forces a Next.js page to load with server-side rendering. What this means is that every time this page is loaded, the getServerSideProps() method runs on the back end, gets data, and sends it into the React component via props. The code within getServerSideProps() is never sent to the client. This makes it a great place to implement our MongoDB queries.
Let's see how this works in practice. Let's create a new file in the pages directory, and we'll call it movies.tsx. In this file, we'll add the following code:
As you can see from the example above, we are importing the same clientPromise utility class, and our MongoDB query is exactly the same within the getServerSideProps() method. The only thing we really needed to change in our implementation is how we parse the response. We need to stringify and then manually parse the data, as Next.js is strict.
Our page component called Movies gets the props from our getServerSideProps() method, and we use that data to render the page showing the top movie title, metacritic rating, and plot. Your result should look something like this:
Top 20 movies
This is great. We can directly query our MongoDB database and get all the data we need for a particular page. The contents of the getServerSideProps() method are never sent to the client, but the one downside to this is that this method runs every time we call the page. Our data is pretty static and unlikely to change all that often. What if we pre-rendered this page and didn't have to call MongoDB on every refresh? We'll take a look at that next!

Example 3: Next.js static generation with MongoDB

For our final example, we'll take a look at how static page generation can work with MongoDB. Let's create a new file in the pages directory and call it top.tsx. For this page, what we'll want to do is render the top 1,000 movies from our MongoDB database.
Top 1,000 movies? Are you out of your mind? That'll take a while, and the database round trip is not worth it. Well, what if we only called this method once when we built the application so that even if that call takes a few seconds, it'll only ever happen once and our users won't be affected? They'll get the top 1,000 movies delivered as quickly as or even faster than the 20 using serverSideProps(). The magic lies in the getStaticProps() method, and our implementation looks like this:
At a glance, this looks very similar to the movies.tsx file we created earlier. The only significant changes we made were changing our limit from 20 to 1000 and our getServerSideProps() method to getStaticProps(). If we navigate to localhost:3000/top in our browser, we'll see a long list of movies.
Top 1000 movies
Look at how tiny that scrollbar is. Loading this page took about 3.79 seconds on my machine, as opposed to the 981-millisecond response time for the /movies page. The reason it takes this long is that in development mode, the getStaticProps() method is called every single time (just like the getServerSideProps() method). But if we switch from development mode to production mode, we'll see the opposite. The /top page will be pre-rendered and will load almost immediately, while the /movies and /api/movies routes will run the server-side code each time.
Let's switch to production mode. In your terminal window, stop the current app from running. To run our Next.js app in production mode, we'll first need to build it. Then, we can run the start command, which will serve our built application. In your terminal window, run the following commands:
When you run the npm run start command, your Next.js app is served in production mode. The getStaticProps() method will not be run every time you hit the /top route as this page will now be served statically. We can even see the pre-rendered static page by navigating to the .next/server/pages/top.html file and seeing the 1,000 movies listed in plain HTML.
Next.js can even update this static content without requiring a rebuild with a feature called Incremental Static Regeneration, but that's outside of the scope of this tutorial. Next, we'll take a look at deploying our application on Vercel.

Deploying your Next.js app on Vercel

The final step in our tutorial today is deploying our application. We'll deploy our Next.js with MongoDB app to Vercel. I have created a GitHub repo that contains all of the code we have written today. Feel free to clone it, or create your own.
Navigate to Vercel and log in. Once you are on your dashboard, click the Import Project button, and then Import Git Repository.
Importing a project in Vercel
The URL I'll use is the one provided above that has the application we built today. For reference, that URL is https://github.com/mongodb-developer/nextjs-with-mongodb. Add your projects GitHub URL and hit Continue. On the next screen, you'll have the option to add Environment Variables. Here, we'll add the variables from our env.local file.
Configuring a project
After hitting the Deploy button, your Next.js application will be automatically built and deployed. This process will take a few minutes, but once it's done, you will get a URL where you can access your Next.js application.
NOTE: Vercel uses dynamic IP addresses, so you'll need to add an exception to access from any IP address in your MongoDB Atlas dashboard. To do this, simply navigate to the Network Access tab, hit the Add IP Address button, and then hit the Allow Access From Anywhere button, or for the Access List Entry, enter 0.0.0.0/0.
Congratulations screen in Vercel

Putting it all together

In this tutorial, we walked through the official Next.js with MongoDB example. I showed you how to connect your MongoDB database to your Next.js application and run queries in multiple ways. Then, we deployed our application using Vercel.
If you have any questions or feedback, reach out through the MongoDB Community forums and let me know what you build with Next.js and MongoDB.

Facebook Icontwitter iconlinkedin icon
Rate this tutorial
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
Tutorial

Adding Real-Time Notifications to Ghost CMS Using MongoDB and Server-Sent Events


Aug 14, 2023 | 7 min read
Tutorial

UDF Announcement for MongoDB to BigQuery Dataflow Templates


Jul 11, 2023 | 4 min read
Tutorial

Getting Started With MongoDB Atlas Serverless, AWS CDK, and AWS Serverless Computing


Mar 04, 2024 | 18 min read
Table of Contents