Socket
Socket
Sign inDemoInstall

module-mapping-webpack-plugin

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

module-mapping-webpack-plugin

Webpack plugin for mapping modules to different files


Version published
Weekly downloads
98
decreased by-11.71%
Maintainers
2
Weekly downloads
 
Created
Source

Module Mapping Webpack Plugin Build Status

This is a webpack plugin for mapping modules onto different files.

Installation

Install the plugin with npm:

$ npm install module-mapping-webpack-plugin --save-dev

Usage

// 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!';

License

The MIT License

Copyright :copyright: 2016 Spartez, https://spartez.com

Keywords

FAQs

Package last updated on 17 Nov 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc