dynamic-replace-loader

1.0.0 • Public • Published

dynamic-replace-loader

webpack dynamic-replace-loader

Note

Only replace within a single file, Please make sure that the content to be replaced is not accessed by other files

Getting Started

install

npm install --save-dev dynamic-replace-loader

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        loader: 'dynamic-replace-loader',
      },
    ],
  },
};

Example

/* DYNAMIC-REPLACE _propA */
class User {
  constructor() {
    this._propA = 'private context'
  }
 
  printPropA() {
    console.log(this._propA)
  }
}

The code output by load: ('_propA' was replaced by random characters 'MX')

/* DYNAMIC-REPLACE _propA */
class User {
  constructor() {
    this.MX = 'private context'
  }
 
  printPropA() {
    console.log(this.MX)
  }
}

Package Sidebar

Install

npm i dynamic-replace-loader

Weekly Downloads

0

Version

1.0.0

License

Apache-2.0

Unpacked Size

15.4 kB

Total Files

6

Last publish

Collaborators

  • mxstrive