-
视频, 备课的文件呀!查看全部
-
cd 项目路径的目录下, 执行 browser-sync start --server --files "css/*.css" 监控所有文件 browser-sync start --server --files "**"查看全部
-
局域网中,所有设备的同步更新!查看全部
-
支持局部刷新 ? Ajax ? 瞎扯,明明时页面全部刷新! https://www.browsersync.io/docs/gulp https://www.browsersync.io/docs/api https://www.browsersync.io/查看全部
-
npm install -g browser-sync查看全部
-
https://www.npmjs.com/package/gulp-livereload https://github.com/vohof/gulp-livereload https://www.npmjs.com/package/livereload查看全部
-
没有必要分别安装, 直接使用 配置好的 package.json, 一键安装! $ npm -i ```json { "name": "Gulp-demo", "version": "1.0.1", "description": "This is a Gulp project created by xgqfrms & webgeeker 2016.10", "main": "gulpfile.js", "scripts": { "auto": "gulp" }, "repository": { "type": "git", "url": "git+https://github.com/xgqfrms/Gulp" }, "keywords": [ "xgqfrms", "webgeeker", "js", "node", "ES6", "gulp", "..." ], "author": "xgqfrms", "license": "MIT", "bugs": { "url": "https://github.com/xgqfrms/Gulp" }, "homepage": "https://github.com/xgqfrms/Gulp", "dependencies": { "gulp": "^3.9.1", }, "devDependencies": { "gulp-browserify": "^0.5.1", "gulp-connect": "^5.0.0", "gulp-livereload": "^3.8.1" } } ```查看全部
-
```js var gulp = require('gulp'), livereload = require('gulp-livereload'); gulp.task('html', function() { livereload.listen(); gulp.watch('src/*.html', function(file){ console.log(file); gulp.src(file.path) .pipe(livereload()); }); }); gulp.task('default',['html']); ```查看全部
-
Gulp 不是读 (个如瀑),应该读 (嘎欧普)查看全部
-
修改html,css,images后, livereload 自动刷新页面! (单向: src => browser)查看全部
-
点击livereload icon 使其中间的圆圈变成实心的(启动成功)! PS: 什么鬼呀,一点也不明显! 为什么,不做成 grey 》 bright color 呢?查看全部
-
cd 再项目所在的的目录下, $ livereload 启动 livereload 服务查看全部
-
Chorme extensions + $ npm install -g livereload $ npm -i livereload === $ npm install --global livereload 不会使用: $ npm -h $ npm -l查看全部
-
livereload查看全部
-
TEST查看全部
举报
0/150
提交
取消