Posts by Raj Kumar • 11 points
2 posts
-
0
votes2
answers181
viewsA: Mongoose error or nodejs
in the end put like this : const postagens = mongoose.model("postagens", Postagem); module.exports = postagens;
-
1
votes2
answers524
viewsA: My localhost connection is taking too long
do not use http, since you are using express thus const express = require("express"); const app = express(); app.listen(3000,()=> console.log("Servidor online");…