
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@feedthrough/webpack
Advanced tools
feedthrough.dev · npm · GitHub
Webpack 5 plugin for Feedthrough. Injects the bridge automatically in development mode — no changes to your app code needed. Has no effect on production builds.
npm install --save-dev @feedthrough/webpack
// webpack.config.mjs
import { FeedthroughPlugin } from "@feedthrough/webpack";
export default {
plugins: [
new FeedthroughPlugin(),
],
};
FeedthroughPlugin adds the bridge as a global webpack entry. It returns immediately if
compiler.options.mode is not "development", so production builds are clean.
Make sure your build script passes --mode production so the mode is set correctly:
{
"scripts": {
"dev": "webpack serve",
"build": "webpack --mode production"
}
}
new FeedthroughPlugin({
serverUrl: "ws://localhost:8765", // default
reconnectDelay: 2000, // ms, default
})
@feedthrough/core is compiled with moduleResolution: Bundler, which produces
extension-less imports that webpack 5 rejects in strict ESM mode. Add this rule to your
webpack config to allow them:
module: {
rules: [{ test: /\.m?js$/, resolve: { fullySpecified: false } }],
},
# Terminal 1 — app
webpack serve
# Terminal 2 — MCP server
node node_modules/@feedthrough/mcp/dist/index.js
FAQs
Unknown package
The npm package @feedthrough/webpack receives a total of 5 weekly downloads. As such, @feedthrough/webpack popularity was classified as not popular.
We found that @feedthrough/webpack demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.