1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
var gulp = require('gulp'); var webserver = require('gulp-webserver'); gulp.task('webserver', function () { gulp.src('./') .pipe(webserver({ host: 'localhost', port: 3000, livereload: true, open: './pages/myPages/login.html', directoryListing: { enable: true, path: './' }, proxies: [ { source: '/api', target: 'http://jsonplaceholder.typicode.com' } ] })) }); gulp.task('default', ['webserver'], function () { console.log('成功'); }); |
1、在本地起一个服务,端口号为3000。
2、open:默认打开的文件的路径
3、directoryListing:是否显示文件列表
4、proxies: 设置代理
接口调用 url http://localhost:3000/api
作者:动次动次forever
链接:https://www.jianshu.com/p/237bc5c04fa1
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。