Angular无法找到模块'net'

时间:2017-10-04 09:16:47

标签: javascript node.js angular typescript angular-cli

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

import {Socket} from 'net';

运行'ng start'时出现错误

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

1 个答案:

答案 0 :(得分:2)

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