Skip to content

anseki/gnirts-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gnirts-loader

npm GitHub issues dependencies license

gnirts loader module for webpack.

Obfuscate string literals in JavaScript code.
See gnirts for more information about gnirts.

Installation

npm install --save-dev gnirts-loader gnirts

Usage

Documentation:

For example:

// webpack.config.js
module.exports = {
  entry: './app.js',
  output: {
    filename: 'bundle.js'
  },
  module: {
    rules: [{
      test: /\.js$/,
      loader: 'gnirts-loader'
    }]
  }
};