
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
webpack-watch-time-plugin
Advanced tools
Webpack plugin that displays time when watcher rebuild happens
Webpack plugin to display time when watcher rebuild happens
npm i -D 'webpack-watch-time-plugin'
In webpack.config.js
const WatchTimePlugin = require('webpack-watch-time-plugin');
let config = {
// <...>
plugins: [
new WatchTimePlugin(),
]
};
module.exports = config;
This plugin accepts an object with additional options:
noChanges
: boolean
| Object
— If provided, the plugin will detect if no changes in source files were madelogLevel
: 'error' | 'warn' | 'info'
— Log level for plugin outputProperty | Type | Required | Default | Description |
---|---|---|---|---|
noChanges.detect | boolean | No | false | Wherever to detect changes |
noChanges.report | boolean | No | false | If detecting, wherever to report when no changes were made (if false , plugin will provide no output at all in these cases) |
noChanges.includeNodeModules | boolean | No | false | Wherever to detect changes in node_modules folders either |
logLevel | string | No | 'error' | Log level for plugin output. For debugging issues use logLevel: 'warn' |
new WatchTimePlugin({
noChanges: {
detect: true,
report: true
},
logLevel: 'warn'
})
webpack -w
FAQs
Webpack plugin that displays time when watcher rebuild happens
The npm package webpack-watch-time-plugin receives a total of 392 weekly downloads. As such, webpack-watch-time-plugin popularity was classified as not popular.
We found that webpack-watch-time-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.