gulp-webserverでローカルにサーバーを立ち上げる手順まとめ
gulpが入っているか確認する
#gulpのバージョン情報を確認
gulp -v
#gulpが入っていなければinstallする
yarn add gulp
#npmでinstallする場合
npm install gulp
yarnでgulp-webserverをinstallする
#packege.jsonを作成する
yarn init
#gulp-webserverをinstallする
yarn add --dev gulp-webserver
#npmでintallする場合
npm install --save-dev gulp-webserver
gulpfile.jsを作る
gulpfile.js
//gulpfile.jsを作って、gulpタスクを追加する
var gulp = require('gulp');
var webserver = require('gulp-webserver');
gulp.task('webserver', function(){
gulp.src('public')
.pipe(webserver({
livereload: true,
open: true,
port: 8000
}));
});
サーバーを立ち上げる
gulp webserver
おわり
参考サイト
・gulp-webserver
・annot GET html & gulp.src location ignored. · Issue #26
Author And Source
この問題について(gulp-webserverでローカルにサーバーを立ち上げる手順まとめ), 我々は、より多くの情報をここで見つけました https://qiita.com/kfunnytokyo/items/d1de44674c97c92832bf著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .