Angular找不到模块“net”

当我在简单的Angular CLI应用程序中添加依赖项时

import {Socket} from 'net'; 

运行'ng start'时出错

 ERROR in C:/IdeaProjects/GethIPC/src/app/app.component.ts (5,20): Cannot find module 'net' 

您正在尝试导入节点模块 – net ,但在浏览器中不可用。 你需要一个你的客户端套接字,例如socket.io,但这当然取决于你想要达到什么。