码迷,mamicode.com
首页 > Web开发 > 详细

node----DeprecationWarning: current URL string parser is deprecated和Port 3000 is already in use的问题

时间:2019-01-15 21:31:43      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:current   运行命令   www   warning   不能   log   端口号   数据   ack   

首先,安装了express和supervisor;

在package.json中:

"scripts": {
    "start": "supervisor ./bin/www"
  },

项目根目录下的命令窗口中运行:npm start

但结果却出现以下情况:

DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.

Port 3000 is already in use...

以上2个问题的解决办法:

(1)URL字符串解析问题的解决办法:mongoose连接数据库时除了url参数外增加2个参数,如下所示:

mongoose.connect("mongodb://127.0.0.1:27017/test",{useNewUrlParser:true},function(err){
  if(err){  
    console.log(‘Connection Error:‘ + err)  
  }else{   
    console.log(‘Connection success!‘)}  
});

 

(2)端口号被占用的解决办法:首先确保同一端口号不能同时开启的2个项目,其次检查命令是否写正确,最后看一下电脑是否安装了类似于百度杀毒的软件,将软件卸载再重新运行命令即可恢复正常!

 

node----DeprecationWarning: current URL string parser is deprecated和Port 3000 is already in use的问题

标签:current   运行命令   www   warning   不能   log   端口号   数据   ack   

原文地址:https://www.cnblogs.com/snowstorm22/p/10274331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!