node-obfuscator
node-obfuscator copied to clipboard
maintainer wanted → Obfuscate your node packages because your boss says so!
When using this npm package, I keep getting the following error: >Uncaught ReferenceError: require is not defined Im using it in an angular project and after building and running the...
There has been development on a new fork of uglify-es, which is now called terser and has its own package! "terser": "^3.7.3" Please upgrade to our new version.
Is this supported? possible to add this? I just need to concat the scripts and run to obfuscator..
Not a high priority but a nicety to have an option to output the concatenated source so uglifyjs warning can be taken care of more easily, say, in utils.js, ```...
On this version of obfuscator: ``` ├─┬ [email protected] │ ├── [email protected] │ └─┬ [email protected] │ ├── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├── [email protected] │ └─┬ [email protected]...
Just one line of as an example without any explanation?
It would be _REALLY_ cool if node-obfuscator could generate source maps that link the obfuscated JavaScript code back to the appropriate source file/line/column, etc. for debugging purposes. From what I...
It is not an issue, frankly, but more like some kind of notes in case if some others happen to stumble upon this humble note and, well, in need of...
any way of obfuscating generators and other ecma6 stuff? I know it it depends on uglifyjs, but maybe you already know how to do it :) thanks
In my code, I do a regex match for a string like this. ``` str.match('^\\d+$') ``` This gets obfuscated to - ``` str.match("\x5e\d\x2b\x24") ``` This doesn't seem to work though,...