
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.
koa-2-webpack-dev-middleware
Advanced tools
webpack dev middleware for koa2
same with https://github.com/webpack/webpack-dev-middleware. will add original middleware to ctx.webpack
var app = require('koa')();
var webpackMiddleware = require("koa-2-webpack-dev-middleware");
app.use(webpackMiddleware(...));
app.get(function *() {
this.body = this.webpack.fileSystem.readFileSync('index.html');
});
var app = require('koa')();
app.use(webpackMiddleware(webpack({
// webpack options
// webpackMiddleware takes a Compiler object as first parameter
// which is returned by webpack(...) without callback.
entry: "...",
output: {
path: "/"
// no real path is required, just pass "/"
// but it will work with other paths too.
}
}), {
// all options optional
noInfo: false,
// display no info to console (only warnings and errors)
quiet: false,
// display nothing to the console
lazy: true,
// switch into lazy mode
// that means no watching, but recompilation on every request
watchDelay: 300,
// delay after change (only lazy: false)
publicPath: "/assets/",
// public path to bind the middleware to
// use the same as in webpack
headers: { "X-Custom-Header": "yes" },
// custom headers
stats: {
colors: true
}
// options for formating the statistics
}));
FAQs
webpack dev middleware for koa2
The npm package koa-2-webpack-dev-middleware receives a total of 0 weekly downloads. As such, koa-2-webpack-dev-middleware popularity was classified as not popular.
We found that koa-2-webpack-dev-middleware 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.