api/route.ts
const { MongoClient, ServerApiVersion } = require('mongodb');
const uri = process.env.MONGODB_URI
// Create a MongoClient with a MongoClientOptions object to set the Stable API version
const client = new MongoClient(uri, {
serverApi: {
version: ServerApiVersion.v1,
strict: true,
deprecationErrors: true,
}
});
async function run() {
try {
// Connect the client to the server (optional starting in v4.7)
await client.connect();
// Send a ping to confirm a successful connection
await client.db("admin").command({ ping: 1 });
console.log("Pinged your deployment. You successfully connected to MongoDB!");
} finally {
// Ensures that the client will close when you finish/error
await client.close();
}
}
module.exports = { run }; // Export the run function
app/page.tsx
import InsertItem from '@/components/InsertItem'
export default function Home() {
return (
<div><InsertItem/></div>
)
}
How to link to mongodb from frontend