AngularJS,Grunt服务器和socket.io.js 404(未找到)

时间:2013-05-27 06:02:08

标签: angularjs socket.io gruntjs yeoman

结合3个小时后,我决定在这里写问题。

我正在尝试使用yeoman在我的电脑上编写应用程序来构建应用程序。我正在尝试使用socket.io,但我看到了404。

我做什么

  1. 我安装了自耕农。
  2. 我在/node_modules/
  3. 下安装了socket.io
  4. 我已经通过bower
  5. 安装了angular-socket-io
  6. 在我的index.html中,我添加了所需的脚本:index.html
  7. 在app.js中我添加了模块btford.socket-io
  8. 在我的控制器中,我注入了套接字:.controller('ChatCtrl', function ($scope, socket) {
  9. 我跑了?服务器使用grunt server命令
  10. 所以,我犯错误或错误理解,所以我的应用程序找不到socket.io.js文件?

    您可以在此处找到我的完整代码:https://github.com/w00caSh/FunWithAngular

    编辑:

    这非常重要。我是否必须为此启用任何节点服务器?

1 个答案:

答案 0 :(得分:2)

问题是,我在server.js文件中使用了错误的代码来监听套接字。

我重写了这个 file ,现在它运作良好。