我想在我的ember cli应用程序中使用socket.io,所以我安装了:
bower install socket.io --save
并将以下行添加到我的Brocfile.js
:
app.import('bower_components/socket.io/index.js');
这导致我的浏览器控制台出现两个错误:
Uncaught ReferenceError: module is not defined
Uncaught Error: Could not find module ember-moment/helpers/moment
有什么想法吗?
答案 0 :(得分:2)
使用导入时没有错误的socket.io-client结束。
app.import('bower_components/socket.io-client/socket.io.js');