其他分享
首页 > 其他分享> > Fatal error: Port 9100 is already in use by another process. npm ERR! code ELIFECYCLE

Fatal error: Port 9100 is already in use by another process. npm ERR! code ELIFECYCLE

作者:互联网

使用 npm run start 的时候报错解决(端口被占用):

1.进入Gruntfile.js

 2.修改默认端口号(默认为9100)

        connect: {
            server: {
                options: {
                    port: 9120,
                    base: '.',
                    keepalive: true
                }
            }
        }

    });

3.npm run start 测试访问

标签:npm,use,already,run,9100,start,默认,端口号
来源: https://blog.csdn.net/m0_52369128/article/details/120762551