Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flow-status-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flow-status-webpack-plugin

Run Flow Status on each Webpack build.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3K
increased by12.28%
Maintainers
1
Weekly downloads
 
Created
Source

Flow Status Webpack Plugin

This webpack plugin will start a Flow server and run flow status on each webpack build. Still experimental.

If you have any idea on how to get it better, you're welcome to contribute!

Requirements

You need to have Flow installed. To do that, follow these steps.

Installation

npm install flow-status-webpack-plugin --save-dev

Usage

var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');

module.exports = {
    ...
    plugins: [
        new FlowStatusWebpackPlugin()
    ]
}

It will generate an output like this:

Flow has no errors

or, in case of some error:

Flow has errors

Configuration

In case you have Flow Interfaces and you're not using a .flowconfig file, you need to specify a path to your interfaces directory, otherwise flow will not be able to identify (and use) those interfaces.

var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');

module.exports = {
    ...
    plugins: [
        new FlowStatusWebpackPlugin({
            interfacesPath: 'path/to/interfaces/directory'
        })
    ]
}

License

This plugin is released under the MIT License.

Keywords

FAQs

Package last updated on 02 Mar 2016

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