1.0.0 • Published 4 years ago

dynamic-replace-loader v1.0.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

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)
  }
}