Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7516649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:11:56+00:00 2026-05-30T01:11:56+00:00

Is there a recommended javascript code obfuscation tool? I have searched it in stackoverflow,and

  • 0

Is there a recommended javascript code obfuscation tool?

I have searched it in stackoverflow,and someone suggest the ‘YUI compressor’.

However it just do the following:

  1. remove the annotatation/white space/new line

  2. replace local variable

  3. or something ele.

But It does not replace the property of one object.

Say I have a code like this:

var a=obj.fun();
var b=obj.pro;

I want something like this:

var xxx,yy,zz;
xxx=obj['yy']();
yy=obj['zz'];

Then even people re-format my code,he can not even know the propery/methods of one object unless he re-do the method/property replacement.

This is just an example, I just want the tool do more obfuscation other than just compress.

Any suggestion?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T01:11:58+00:00Added an answer on May 30, 2026 at 1:11 am

    You should try the google closure compiler, it provides three levels of writing:

    1. The first one is WHITESPACE_ONLY
    2. The second one is SIMPLE_OPTIMIZATIONS
    3. The third one is ADVANCED_OPTIMIZATIONS

    WHITESPACE_ONLY removes comments, trim line breaks and unnecessary spaces. The output code is identical to the source JavaScript.

    SIMPLE_OPTIMIZATIONS also renames local variable and function parameters.

    ADVANCED_OPTIMIZATIONS is the most aggresive, besides the optimization in the above two levels, it also does:

    • global variable renaming
    • remove uncalled functions
    • function inlining

    For the give example:

    //INPUT CODE
    function unusedFunction(note) {
      alert(note['text']);
    }
    
    function displayNoteTitle(note) {
      alert(note['title']);
    }
    
    var flowerNote = {};
    flowerNote['title'] = "Flowers";
    displayNoteTitle(flowerNote);
    

    WHITESPACE_ONLY result is :

    //WHITESPACE_ONLY OUTPUT CODE
    function unusedFunction(note){alert(note["text"])}function displayNoteTitle(note){alert(note["title"])}var flowerNote={};flowerNote["title"]="Flowers";displayNoteTitle(flowerNote);
    

    SIMPLE_OPTIMIZATIONS result is:

    //SIMPLE_OPTIMIZATIONS OUTPUT CODE
    function unusedFunction(a){alert(a.text)}function displayNoteTitle(a){alert(a.title)}var flowerNote={title:"Flowers"};displayNoteTitle(flowerNote);
    

    ADVANCED_OPTIMIZATIONS result is:

    //ADVANCED_OPTIMIZATIONS OUTPUT CODE
    alert("Flowers");
    

    I think the SIMPLE_OPTIMIZATIONS and ADVANCED_OPTIMIZATIONS meet your need.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just started writing my own JavaScript Framework (just for the learning experience),
I have seen the following methods of putting JavaScript code in an <a> tag:
Is there a recommended way to bounce an asp.net application besides touching web.config from
Is there a recommended way of using Django to clean an input string without
Is there any recommended Java application profiling tutorial? I am now using JProfiler and
What is the recommended location to save user preference files? Is there a recommended
Beyond the official documentation, are there any recommended resources for learning to build jQuery
Is there a canonical or recommended pattern for implementing arithmetic operator overloading in C++
Is there a collation type which is officially recommended by MySQL, for a general
Is there a dtls library that you recommended?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.