MongoDB - Error: invalid schema, expected mongodb

前端 未结 9 2121
悲&欢浪女
悲&欢浪女 2020-12-13 05:59

I\'m new in building application with MEAN Stack, I\'m trying to build a real time chat app, here is my server side :

console.log(\"Server running...!\");

v         


        
9条回答
  •  借酒劲吻你
    2020-12-13 06:51

    Sometimes, error might be with the quotes around environment variables. Remove them once and try. Might help.

    Error might be with :

     set DATABASE_URI='mongodb://localhost:1000/my_app' && node index.js
    

    Correct command will be:

      set DATABASE_URI=mongodb://localhost:1000/my_app && node index.js
    

提交回复
热议问题