最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览0评论

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();
}));
发布评论

评论列表(0)

  1. 暂无评论