これからはじめるGulp #4:gulp-connectモジュールを使ったローカルサーバの起動

これからはじめるGulp #4:gulp-connectモジュールを使ったローカルサーバの起動

Clock Icon2014.12.04

この記事は公開されてから1年以上経過しています。情報が古い可能性がありますので、ご注意ください。

はじめに

前回のこれからはじめるGulp #3:gulp.watchでファイルの変更を監視しタスクを実行するで変更を監視してタスクを実行できるようになりました。今回は監視と平行して走らせるgulp-connectを使ったローカルサーバの起動を試します。

準備

ローカルサーバにアクセスした時に表示させるindex.htmlを作っておきましょう。ローカルサーバのrootディレクトリはprodです。

index.htmlを作る

srcディレクトリにindex.htmlを作ります。このHTMLはローカルサーバー起動時にprodディレクトリにコピーします。

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Gulp Hello World</title>
  <link rel="stylesheet" href="css/style.css">
</head>
<body>

<h1>Hello World</h1>
  
</body>
</html>

gulp-connectのインストールと読み込み

gulp-connect--save-devを付けて開発用としてインストールします。

$ sudo npm install --save-dev gulp-connect
Password:
[email protected] node_modules/gulp-connect
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

インストールが終わったらgulpfile.jsファイルに読み込みます。

var gulp    = require('gulp');
var sass    = require('gulp-sass');
var connect = require('gulp-connect');

...

copyタスクを作る

今回ローカルサーバのrootディレクトリにprodディレクトリを指定します。srcディレクトリに保存されているindex.htmlprodディレクトリにコピーしなければHTMLを表示できません。そこで前回作成したgulpfile.jsをベースにcopyタスクを追加します。

var gulp = require('gulp');
var sass = require('gulp-sass');

gulp.task('sass', function(){
  gulp.src('./src/scss/*.scss')
    .pipe(sass())
    .pipe(gulp.dest('./prod/css'));
});

//copyタスクをここに追加

gulp.task('watch', ['sass'], function(){
  var watcher = gulp.watch('./src/scss/*.scss', ['sass']);
  watcher.on('change', function(event) {
    console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
  });
});

gulp.task('default', ['sass']);

copyタスク

copyタスクはstream内でSassなどのモジュール(.pipe(sass()))を指定せず、gulp.dest()で保存先だけ指定します。Grantの場合はgrunt-contrib-copyモジュールを使って実現しますが、Gulpはメソッドだけで実現できるんですね。

gulp.task('copy', function(){
  gulp.src('./src/*.html')
    .pipe(gulp.dest('./prod'));
});

copyタスクを試す

copyタスクを単体で実行してprodにHTMLがコピーされることを確認します。

$ gulp copy
[21:33:27] Using gulpfile ~/Projects/test.io/vccw/www/wordpress/wp-content/themes/test.io/gulpfile.js
[21:33:27] Starting 'copy'...
[21:33:27] Finished 'copy' after 4.85 ms
$ tree prod
prod
├── css
│   └── style.css
└── index.html

prodindex.htmlがコピーされました。

監視対象にHTMLを追加する

前回作成したwatchタスクにcopyタスクを追加します。イベントリスナーを使ったログ表示はわかりにくくなってしまうため削除しておきます。

gulp.task('watch', ['sass', 'copy'], function(){
  gulp.watch('./src/scss/*.scss', ['sass']);
  gulp.watch('./src/*.html', ['copy']);
});

この時点でgulpfile.jsはこのようになります。

var gulp    = require('gulp');
var sass    = require('gulp-sass');
var connect = require('gulp-connect');

//sass
gulp.task('sass', function(){
  gulp.src('./src/scss/*.scss')
    .pipe(sass())
    .pipe(gulp.dest('./prod/css'));
});

//copy
gulp.task('copy', function(){
  gulp.src('./src/*.html')
    .pipe(gulp.dest('./prod'));
});

//watch
gulp.task('watch', ['sass', 'copy'], function(){
  gulp.watch('./src/scss/*.scss', ['sass']);
  gulp.watch('./src/*.html', ['copy']);
});

gulp.task('default', ['sass']);

watchタスクをチェックする

watchタスクを実行して、HTMLの変更を監視しcopyタスクが実行されるか確認します。

$ gulp watch
[21:48:10] Using gulpfile ~/Projects/test.io/vccw/www/wordpress/wp-content/themes/test.io/gulpfile.js
[21:48:10] Starting 'sass'...
[21:48:10] Finished 'sass' after 5.39 ms
[21:48:10] Starting 'copy'...
[21:48:10] Finished 'copy' after 1.25 ms
[21:48:10] Starting 'watch'...
[21:48:10] Finished 'watch' after 7.3 ms
[21:48:14] Starting 'sass'...
[21:48:14] Finished 'sass' after 1.28 ms
[21:48:17] Starting 'copy'...
[21:48:17] Finished 'copy' after 1.59 ms

問題なさそうです。

serveタスクを作る

まずは、ローカルサーバーを立ち上げるだけのタスクを作ります。

  gulp.task('serve', function(){
  connect.server();
});

serveタスクを追加したgulpfile.jsはこうなります。

var gulp    = require('gulp');
var sass    = require('gulp-sass');
var connect = require('gulp-connect');

//sass
gulp.task('sass', function(){
  gulp.src('./src/scss/*.scss')
    .pipe(sass())
    .pipe(gulp.dest('./prod/css'));
});

//copy
gulp.task('copy', function(){
  gulp.src('./src/*.html')
    .pipe(gulp.dest('./prod'));
});

//watch
gulp.task('watch', ['sass', 'copy'], function(){
  gulp.watch('./src/scss/*.scss', ['sass']);
  gulp.watch('./src/*.html', ['copy']);
});

//server
gulp.task('serve', function(){
  connect.server();
});

gulp.task('default', ['sass']);

ローカルサーバーを起動する

serveタスクを起動してみます。rootディレクトリをprodにしていないので、gulpfile.jsが置かれているディレクトリがrootになります。

$ gulp serve
[11:36:46] Using gulpfile ~/Projects/test.io/vccw/www/wordpress/wp-content/themes/test.io/gulpfile.js
[11:36:46] Starting 'serve'...
[11:36:46] Finished 'serve' after 22 ms
[11:36:46] Server started http://localhost:8080

ローカルサーバーが起動したのでhttp://localhost:8080にアクセスしてみます。 rootディレクトリにindex.htmlがないのでディレクトリとファイルの一覧が表示されるはずです。

ディレクトリ一覧の中にあるprodhttp://localhost:8080/prod/)をクリックすると冒頭で作成したindex.htmlが表示されるはずです。

ローカルサーバーを停止する

ローカルサーバーを止めるにはcontrol + Cを打ちます。

[11:36:46] Starting 'serve'...
[11:36:46] Finished 'serve' after 22 ms
[11:36:46] Server started http://localhost:8080
^C[12:01:47] Server stopped

rootディレクトリを指定する

rootディレクトリを指定するにはgulp-connectのserveメソッドにオプションを与えます。

gulp.task('serve', function(){
  connect.server({
    root: './prod'
  });
});

これでhttp://localhost:8080にアクセスした時にprodがrootディレクトリになりprod/index.htmlが見られるようになります。

defaultタスクで必要なタスクをすべて実行する

最後にwatchタスクとserveタスクをgulpコマンドだけで実行できるようにdefaultタスクを調整します。

gulp.task('default', ['sass']);

sassタスクが設定されていますがこれをwatchserveに書き換えます。

gulp.task('default', ['watch', 'serve']);

gulpfile.js

gulpfile.jsは最終的にこのようになります。

var gulp    = require('gulp');
var sass    = require('gulp-sass');
var connect = require('gulp-connect');

//sass
gulp.task('sass', function(){
  gulp.src('./src/scss/*.scss')
    .pipe(sass())
    .pipe(gulp.dest('./prod/css'));
});

//copy
gulp.task('copy', function(){
  gulp.src('./src/*.html')
    .pipe(gulp.dest('./prod'));
});

//watch
gulp.task('watch', ['sass', 'copy'], function(){
  gulp.watch('./src/scss/*.scss', ['sass']);
  gulp.watch('./src/*.html', ['copy']);
});

//server
gulp.task('serve', function(){
  connect.server({
    root: './prod'
  });
});

gulp.task('default', ['watch', 'serve']);

実行

defaultタスクを試してみます。defaultタスクは省略できるのでgulpコマンドのみで行えます。

$ gulp
[13:20:34] Using gulpfile ~/Projects/test.io/vccw/www/wordpress/wp-content/themes/test.io/gulpfile.js
[13:20:34] Starting 'sass'...
[13:20:34] Finished 'sass' after 5.32 ms
[13:20:34] Starting 'copy'...
[13:20:34] Finished 'copy' after 1.46 ms
[13:20:34] Starting 'watch'...
[13:20:34] Finished 'watch' after 7.47 ms
[13:20:34] Starting 'serve'...
[13:20:34] Finished 'serve' after 10 ms
[13:20:34] Starting 'default'...
[13:20:34] Finished 'default' after 8.98 μs
[13:20:34] Server started http://localhost:8080

変更を監視してタスクを実行し、ローカルサーバーも起動できました。あとは変更された時にブラウザをリロードするLiveReloadですね。もう少しのところですがLive Reloadは明日に回すことにします。

Share this article

facebook logohatena logotwitter logo

© Classmethod, Inc. All rights reserved.