Socket
Socket
Sign inDemoInstall

gulp-js2flowchart

Package Overview
Dependencies
105
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-js2flowchart

A very basic gulp plugin wrapper for js2flowchart.


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Install size
10.3 MB
Created
Weekly downloads
 

Readme

Source

gulp-js2flowchart

A very basic gulp plugin wrapper for js2flowchart.

Usage

Install with NPM:

npm install --save gulp-js2flowchart

Consume in your gulpfile.js file:

const gulp = require('gulp');
const { plugin } = require('gulp-js2flowchart');
const rename = require('gulp-rename');

gulp.task('js-to-flow-chart', () => {
  return src('./src/fileSystem.js')
    .pipe(plugin())
    .pipe(rename((path) => {
      path.extname = '.svg';
    }))
    .pipe(dest('./output/'));
});

Refer to examples/gulpfile.js for more usage examples.

Keywords

FAQs

Last updated on 07 Apr 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc