DEV Community

Cover image for Can I Use MongoDB with Prisma Yet?
ajcwebdev
ajcwebdev

Posted on • Updated on • Originally published at ajcwebdev.com

Can I Use MongoDB with Prisma Yet?

Outline

All of this project's code can be found in the First Look monorepo on my GitHub.

Introduction

Warning: The MongoDB connector for Prisma 2 is not ready for production and should not be used by anyone under any circumstances. It is in Preview mode as of v2.27.0.

MongoDB is a database. It does stuff with data and then puts it in a base¹. But it doesn't do this the way a normal database does. That's because it uses documents instead of relations. At one point in time it was called NoSQL.

But don't worry about all that.

The whole reason you use Prisma in the first place is because you don't want to write SQL or whatever crazy query language they came up with at 10gen back in the day. You just want to write JavaScript like God intended.

And you're willing to write lots and lots and lots and lots and lots and lots and lots of comments on GitHub letting the world know this.

Well it's your lucky day...

MongoDB Atlas

The first thing you'll need is a Mongo database (shocking). The easiest (not cheapest) way to get a Mongo database is with MongoDB Atlas. I apologize for the click-ops. After creating an account you will be asked to name your organization and project.

01-organization-and-project-names

You will then be asked for your preferred language, a question that no one has ever argued about.

02-preferred-language

You will then be asked if you want a plan that costs money or a plan that doesn't cost money. I'm sure this will be a very hard decision to make.

03-shared-clusters

Pick a region close to you cause ain't nobody got time for the speed of light.

04-cloud-provider-and-region

Again, you can pick the one that's free or one that's not free.

05-cluster-tier

Give your cluster a name that suitably explains just how thoroughly this project has been nailed.

06-cluster-name

Click "Create Cluster" to create a cluster. You will then be taken to your dashboard.

07-atlas-dashboard

Take a few minutes to contemplate your mortality. Once the existential dread starts to fade away you should have a cluster up and running.

08-clusters

If you want to do anything useful with this database like put data in the base then you need to connect to it. Click connect to connect.

09-connect

Give your database a username and a password that is totally secret and not published in a blog post on the internet. Click "Create Database User" to create a database user and then click "Add your current IP address" to add your current IP address.

10-choose-a-connection-method

Click "Choose a connection method" to choose a connection method.

11-connect-your-application

Click "Connect your application" to connect your application.

12-environment-variable

Prisma

Now that the boring stuff is out of the way we can get to the ORMing.

Create a new blog

mkdir ajcwebdev-prismongo
cd ajcwebdev-prismongo
Enter fullscreen mode Exit fullscreen mode

Initialize package.json

npm init -y
Enter fullscreen mode Exit fullscreen mode

Install development dependencies

npm install -D prisma typescript ts-node @types/node
Enter fullscreen mode Exit fullscreen mode

Initialize Prisma Schema

npx prisma init
Enter fullscreen mode Exit fullscreen mode

If you'd like to try MongoDB on an existing Prisma project, you'll need to make sure you're running Prisma 2.21.2 or above. Just remember, no one under any circumstances should be using this. Not even you!!!

Prisma Schema

Your schema.prisma file will contain a Post.

datasource db {
  provider = "mongodb"
  url      = env("DATABASE_URL")
}

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["mongodb"]
}

model Post {
  id    String @id @default(auto()) @map("_id") @db.ObjectId
  slug  String @unique
  title String
  body  String
}
Enter fullscreen mode Exit fullscreen mode

What's that? You don't need a blog? I don't see what that has to do with anything.

Generate Prisma Client

Now run that one command that does all the stuff. Don't worry about it too much, it just does the stuff.

npx prisma generate
Enter fullscreen mode Exit fullscreen mode

Use Prisma Client

Create a script to test that we can read and write data to our base in an index.ts file.

touch index.ts
Enter fullscreen mode Exit fullscreen mode
import { PrismaClient } from "@prisma/client"
const prisma = new PrismaClient()

async function main() {
  await prisma.$connect()

  await prisma.post.create({
    data: {
      title: "If you really want something, just complain loudly on GitHub",
      slug: "this-is-a-terrible-lesson-to-teach",
      body: "That's a joke please don't do this.",
    },
  })

  await prisma.post.create({
    data: {
      title: "Second post",
      slug: "post-two",
      body: "This is the second post.",
    },
  })

  const posts = await prisma.post.findMany()

  console.dir(posts, { depth: Infinity })
}

main()
  .catch(console.error)
  .finally(() => prisma.$disconnect())
Enter fullscreen mode Exit fullscreen mode

Environment Variable

Inside .env include your DATABASE_URL.

DATABASE_URL=mongodb+srv://ajcwebdev:dont-steal-my-db-ill-kill-you@nailed-it.5mngs.mongodb.net/myFirstDatabase?retryWrites=true&w=majority
Enter fullscreen mode Exit fullscreen mode

Hold your breath and run the script

npx ts-node index.ts
Enter fullscreen mode Exit fullscreen mode

If you followed along correctly you should get the following output:

[
  {
    id: '6080d8df0011018100a0e674',
    slug: 'this-is-a-terrible-lesson-to-teach',
    title: 'If you really want something, just complain loudly on GitHub',
    body: "That's a joke please don't do this."
  },
  {
    id: '6080d8e00011018100a0e675',
    slug: 'post-two',
    title: 'Second post',
    body: 'This is the second post.'
  }
]
Enter fullscreen mode Exit fullscreen mode

13-collections

Next Steps

[1] - Not an accurate definition of a database.

Top comments (2)

Collapse
 
rjfranco_95 profile image
RJ Franco

Thank you very much!
I'd like to ask if the previewFeatures = ["mongodb"] in the schema file is still required?

Collapse
 
ajcwebdev profile image
ajcwebdev

Hey RJ, yes I believe the previewFeatures flag is still required and likely will be for a couple more months or longer. According to the recent release notes it has now entered Preview mode as of v2.27.0.

yes this was possible to do for the last few minor releases anyway but who's counting 🤫