gulp-livereload-for-was
A gulp plugin for livereload best used with the livereload chrome extension.
Install
npm install --save-dev gulp-livereload-for-was
livereload(port/server)
livereload(options)
livereload(port/server, options)
livereload()
Create a Transform
stream and listen to the port or a tiny-lr.Server
instance. If none is passed, a livereload server is automatically started listening on port 35729
.
options.silent
Suppress all debug messages. Default is false
.
options.auto
Automatically start a livereload server. Default is true
.
options.key
options.cert
Options are also passed to tinylr
. Including a key
and cert
will create an HTTPS server.
livereload.listen(port/server)
livereload.listen(options)
livereload.listen(port/server, options)
livereload.listen()
Listen to the port or a tiny-lr.Server
instance. If none is passed, a livereload server is automatically started listening on port 35729
. Does not create a stream.
livereload.changed(filepath, port/server)
livereload.changed(filepath)
livereload.changed()
Notify a change.
Sample Usages
use with WAS:
- start WAS such as Tomcat, Nginx, IIS first.
gulp watch
- use
Ctrl + c
for exiting from watch.- all the files should be saved before
Ctrl + c
, because Livereload-for-was load source code and rewrite them. - use VCS such as git, svn after
Ctrl + c
, because the livereload script is included in all source code.
- all the files should be saved before
// watchvar gulp = notify = livereloadForWas = ; gulp; // remove livereload scriptgulp;
License
The MIT License (MIT)
Copyright (c) 2014 NAVER Corp.
Copyright (c) 2014 Cyrus David
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.