nodejs icon indicating copy to clipboard operation
nodejs copied to clipboard

Mongodb Insertion

Open amadich opened this issue 3 years ago • 0 comments

Use free database mongoose : with script this app.get("/insert", async (req,res) => { const fmyc = new myc({timename: "Fin", timeEnergie: 100}); try{ await fmyc.save(); res.send("my Collection Inserted!"); }catch(err) {console.log(err);} })

amadich avatar Jan 17 '23 20:01 amadich