使用gulp和wiredep,socket.io没有添加到index.html(即使它在bower.json中)

时间:2015-02-17 06:01:32

标签: javascript html socket.io gulp wiredep

我的bower.json文件中有angular,angular-ui-router和socket-io。

当我运行gulp文件(使用wiredep)时,两个角度脚本已成功添加到我的index.html文件中,但socket.io脚本不是 - 我无法弄清楚原因。谢谢你的帮助

//命令行

[21:56:06] Using gulpfile ~/dev/projects/ecommerceVidChat/gulpfile.js
[21:56:06] Starting 'default'...
[21:56:06] Starting 'bower-dependencies'...
[21:56:06] Finished 'bower-dependencies' after 6.24 ms
[21:56:06] Finished 'default' after 7.24 ms

// bower.json

  "dependencies": {
    "angular": "~1.3.13",
    "socket.io": "~1.3.4",
    "angular-ui-router": "~0.2.13"
  }

// gulpfile.js

var gulp = require('gulp'),
    wiredep = require('wiredep').stream;

gulp.task('default', function() {
  gulp.start('bower-dependencies')
});

gulp.task('bower-dependencies', function () {  
  gulp.src('./build/index.html') 
    .pipe(wiredep({
      directory: './build/bower_components',
      bowerJson: require('./bower.json'),
    }))
    .pipe(gulp.dest('./build/'));
});

// index.html的

<!-- bower:js -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<!-- endbower -->

//的package.json

"devDependencies": {
    "gulp": "^3.8.11"
  }

2 个答案:

答案 0 :(得分:10)

Socket.io 本身没有 bower 支持,请记住它是服务器,而不是客户端。

您可以通过将serveClient选项设置为true来为套接字服务器提供客户端脚本,并将其直接插入index

 <script src="socket.io/socket.io.js"></script>

或安装 bower 中引用的客户端脚本,但使用其他名称:

bower install -save socket.io-client

如果此软件包没有main属性,则必须在主bower.json中覆盖它:

"overrides": {
  "socket.io-client": {
    "main": "socket.io.js"
  }
}

这样, wiredep 会自动将其注入您的index.html

答案 1 :(得分:1)

有时供应商在其bower.json文件中排除了可选的main属性,我相信,wiredep用它来编译源文件数组。检查 bower.json文件夹中的bower_components/socket.io/文件,看看他们是否包含了该文件。如果没有,也许你可以对socket.io做一个pull请求或者至少提出一个问题?