javascript - How to open the chrome browser with gulp-open? - Stack Overflow

I am using gulp-open with gulp in windows 7:gulp.task('op', function(){var options = {uri: &#

I am using gulp-open with gulp in windows 7:

gulp.task('op', function(){
    var options = {
        uri: 'localhost:8080',
        app: 'chrome'
    };
    gulp.src(__filename)
        .pipe(open(options));
});

The index.html file opens with the app when I use app:'Firefox' but when I use the chrome option it opens an empty index.html? How can I fix this?

I am using gulp-open with gulp in windows 7:

gulp.task('op', function(){
    var options = {
        uri: 'localhost:8080',
        app: 'chrome'
    };
    gulp.src(__filename)
        .pipe(open(options));
});

The index.html file opens with the app when I use app:'Firefox' but when I use the chrome option it opens an empty index.html? How can I fix this?

Share edited Feb 1, 2016 at 23:08 bier hier asked Jan 29, 2016 at 5:38 bier hierbier hier 22.6k44 gold badges104 silver badges174 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 10

Depending on the OS you need to refer to the chrome app differently in options:

'google-chrome' // Linux 

'chrome' // Windows 

'google chrome' or 'Google Chrome' // OSX 

Refer to section Options.app in the NPM documentation about gulp-open.

I only added http:// to the uri and it worked for me.

gulp.task('op', function(){
    var options = {
        uri: 'http://localhost:8080',
        app: 'chrome'
    };
    gulp.src(__filename)
    .pipe(open(options));
});

This is a snippet of my code that solves the issue for me, you can use it to modify yours accordingly:

var gulp = require('gulp');
var liveServer = require('gulp-live-server');
var browserSync = require('browser-sync');

gulp.task('live-server', function(done){
    var server = new liveServer('server/main.js');
    server.start();
    done();
})

gulp.task('serve', gulp.series('live-server', function(done){
    browserSync.init(null,{
        proxy:"http://localhost:7777",
        port:9001,
        open: true
    })
    done();
}));

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743667127a4487160.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信