Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
flow-status-webpack-plugin
Advanced tools
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!
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()
]
}
It will generate an output like this:
or, in case of some error:
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'
})
]
}
This plugin is released under the MIT License.
FAQs
Run Flow Status on each Webpack build.
The npm package flow-status-webpack-plugin receives a total of 2,625 weekly downloads. As such, flow-status-webpack-plugin popularity was classified as popular.
We found that flow-status-webpack-plugin 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.