繁体   English   中英

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

[英]Using gulp and wiredep, socket.io is not added to index.html (even though it is in bower.json)

我的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"
  }

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM