Skip to content

koemei/gulp-node-inspector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-node-inspector

A gulp-friendly node-inspector wrapper

Perfect for development.

Installation

npm install gulp-node-inspector --save-dev

Usage

// gulpfile.js
var gulp = require('gulp');
var nodeInspector = require('gulp-node-inspector');

gulp.task('debug', function() {

  gulp.src([])
    .pipe(nodeInspector());
});

Example with all available options (default values):

// gulpfile.js
var gulp = require('gulp');
var nodeInspector = require('gulp-node-inspector');
gulp.task('debug', function() {

  gulp.src([])
    .pipe(nodeInspector({
      debugPort: 5858,
      webHost: '0.0.0.0',
      webPort: 8080,
      saveLiveEdit: false,
      preload: true,
      inject: true,
      hidden: [],
      stackTraceLimit: 50,
      sslKey: '',
      sslCert: ''
    }));
});

Enter gulp debug in your shell to start the node-inspector.

Options

You can pass an object to nodeInspector with options specified in node-inspector config.
Options are written in camelCase style!

License

MIT