Socket
Book a DemoInstallSign in
Socket

obfuscator-io-metro-plugin

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

obfuscator-io-metro-plugin

A metro plugin to use javascript-obfuscator library with react-native

Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
2.4K
-35.12%
Maintainers
1
Weekly downloads
 
Created
Source

Obfuscator.io Metro Plugin

npm version npm PRs welcome!

This metro plugin obfuscate your React Native bundle using javascript-obfuscator
It only obfuscates your code not the code of node_modules, you can verify the obfuscated bundle by either extracting the index.android.bundle from generated apk or you can find the file at project_root\android\app\build\generated\assets\react\release after assembleRelease process

for iOS if you’re facing any issue check this comment by @andresarezo

Installation

 npm i obfuscator-io-metro-plugin

Usage

Include the plugin in your metro.config.js:

const jsoMetroPlugin = require("obfuscator-io-metro-plugin")(
  {
    // for these option look javascript-obfuscator library options from  above url
    compact: false,
    sourceMap: false,
    controlFlowFlattening: true,
    controlFlowFlatteningThreshold: 1,
    numbersToExpressions: true,
    simplify: true,
    shuffleStringArray: true,
    splitStrings: true,
    stringArrayThreshold: 1,
  },
  {
    runInDev: false /* optional */,
    logObfuscatedFiles: true /* optional generated files will be located at ./.jso */,
    // source Map generated after obfuscation is not useful right now
    sourceMapLocation:
      "./index.android.bundle.map" /* optional  only works if sourceMap: true in obfuscation option */,
  }
);

module.exports = {
  transformer: {
    getTransformOptions: async () => ({
      transform: {
        experimentalImportSupport: false,
        inlineRequires: false,
      },
    }),
  },
  ...jsoMetroPlugin,
};

For obfuscation options configuration docs see: https://github.com/javascript-obfuscator/javascript-obfuscator

Keywords

obfuscation

FAQs

Package last updated on 07 Apr 2022

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