New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-node-inspector

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-node-inspector

Run node inspector from your gulp build.

  • 0.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

Keywords

FAQs

Package last updated on 30 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc