Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
net.Server.listen如果绑定到现有的 unix 套接字文件,则会引发错误。是否可以在不先删除文件的情况下解决此问题?
net.Server.listen
或者我可以检测它是否未被另一个节点进程使用,如果没有 - 删除它,如果是 - 崩溃?
你可以net.connect()先听,如果没有人在听,你会得到一个 ECONNREFUSED 错误。
net.connect()