Mongodb – Mongoose error while trying to create a new document
here is the mongoose version im using "mongoose": "^8.3.2" and here is the full code import mongoose from "mongoose"; import User from "./script.js"; mongoose.connect("mongodb://localhost:27017/appdb") const run = async()=>{ try { const user = new User({name:"someone", age:55}) user.save() console.log(user) } catch…