Skip to content

icfnext/gulp-slang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

375e431 · Apr 23, 2019

History

35 Commits
Oct 21, 2014
Oct 2, 2014
Mar 11, 2016
Jul 8, 2018
Jul 8, 2018

Repository files navigation

gulp-slang

Curl files to running JCR

Install

    npm install gulp-slang --save-dev

Example

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

    gulp.task('watch', function() {
        gulp.watch('js/*.js', function(e) {
            return gulp.src()
                .pipe(slang({
                    port: 4503
                }));
        });
    });

Options

host

Type: string Default: localhost

hostname to running sling instance.

port

Type: number Default: 4502

Port for running sling instance.

username

Type: string Default: admin

Username for authentication.

password

Type: string Default: admin

Password for authentication.