node启动服务器自动找本地未被使用的端口号
Posted vieber
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node启动服务器自动找本地未被使用的端口号相关的知识,希望对你有一定的参考价值。
使用portfinder模块查找端口号
代码示例
const portfinder = require('portfinder')
portfinder.basePort = PORT
portfinder.getPort((err, port) => {
if (err) {
console.error(err);
}
const url = `http://localhost:${port}/path/`;
console.log('> Listening at ' + url + '\\n');
const app = server.listen(port, '0.0.0.0', () => {
console.log(app.address().address);
console.log(app.address().port);
});
});
以上是关于node启动服务器自动找本地未被使用的端口号的主要内容,如果未能解决你的问题,请参考以下文章
在 localhost 上使用不同的端口号连接 mysql 表