Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I use JS Obfuscator with this? #35

Open
SamHoque opened this issue Jan 20, 2024 · 0 comments
Open

How do I use JS Obfuscator with this? #35

SamHoque opened this issue Jan 20, 2024 · 0 comments

Comments

@SamHoque
Copy link

Added it in the plugins doesn't seem to be obfuscating the JS compiled file.

const { BytenodeWebpackPlugin } = require('@herberttn/bytenode-webpack-plugin')
var WebpackObfuscator = require('webpack-obfuscator')
const rules = require('./webpack.rules')


module.exports = {
  entry: { index: './src/main.ts' },
  output: {
    filename: '[name].js',
    devtoolModuleFilenameTemplate: '[absolute-resource-path]'
  },
  module: {
    rules
  },
  plugins: [
    new WebpackObfuscator({
      rotateStringArray: true,
      stringArray: true,
      stringArrayEncoding: ['rc4'],
      stringArrayThreshold: 0.75
    }),
    new BytenodeWebpackPlugin({ compileForElectron: true })
  ],
  target: 'electron-main'
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant