
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
flow-status-webpack-plugin-fork
Advanced tools
This webpack plugin will automatically start a Flow server (or restart if one is running) when webpack starts up, and run flow status
after each webpack build. Still experimental.
If you have any idea on how to get it better, you're welcome to contribute!
You need to have Flow installed. To do that, follow these steps.
npm install flow-status-webpack-plugin --save-dev
var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');
module.exports = {
...
plugins: [
new FlowStatusWebpackPlugin()
]
}
If you want to pass additional command-line arguments to flow start
, you can pass a flowArgs
option to the plugin:
var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');
module.exports = {
...
plugins: [
new FlowStatusWebpackPlugin({
flowArgs: '--lib path/to/interfaces/directory'
})
]
}
If you don't want the plugin to automatically restart any running Flow server, pass restartFlow: false
:
var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');
module.exports = {
...
plugins: [
new FlowStatusWebpackPlugin({
restartFlow: false
})
]
}
If provided a binary path, will run Flow from this path instead of running it from any global installation.
var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');
module.exports = {
...
plugins: [
new FlowStatusWebpackPlugin({
binaryPath: '/path/to/your/flow/installation'
})
]
}
If you want the plugin to fail the build if the code doesn't type check, pass failOnError = true
, and include the NoErrorsPlugin
:
var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');
module.exports = {
...
plugins: [
new webpack.NoErrorsPlugin(),
new FlowStatusWebpackPlugin({
failOnError: true
})
]
}
If you want to perform an action on successful/failed Flow checks, use the onSucess
/onError
callbacks:
var FlowStatusWebpackPlugin = require('flow-status-webpack-plugin');
var notifier = require('node-notifier');
module.exports = {
...
plugins: [
new webpack.NoErrorsPlugin(),
new FlowStatusWebpackPlugin({
onSuccess: function(stdout) { notifier.notify({ title: 'Flow', message: 'Flow is happy!' }); },
onError: function(stdout) { notifier.notify({ title: 'Flow', message: 'Flow is sad!' }); }
})
]
}
This plugin is released under the MIT License.
FAQs
Run Flow Status on each Webpack build.
We found that flow-status-webpack-plugin-fork demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.