
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
module-mapping-webpack-plugin
Advanced tools
This is a webpack plugin for mapping modules onto different files.
Install the plugin with npm:
$ npm install module-mapping-webpack-plugin --save-dev
// webpack.config.js
const webpack = require('webpack');
const ModuleMappingPlugin = require('module-mapping-webpack-plugin');
module.exports = {
// ...
plugins: [
new ModuleMappingPlugin({
'./foo.js': './foo-spartez.js',
// ...
})
]
};
// foo.js
export default () => console.log('Hello World!');
// foo-spartez.js
export default () => console.log('Hello Spartez!');
// index.js
import foo from './foo';
foo(); // → 'Hello Spartez!';
The MIT License
Copyright :copyright: 2016 Spartez, https://spartez.com
FAQs
Webpack plugin for mapping modules to different files
The npm package module-mapping-webpack-plugin receives a total of 3 weekly downloads. As such, module-mapping-webpack-plugin popularity was classified as not popular.
We found that module-mapping-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.