Socket
Socket
Sign inDemoInstall

@russcarver/ngx-source-obfuscation

Package Overview
Dependencies
112
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @russcarver/ngx-source-obfuscation

Integrates the javascript-obfuscation project into an angular project


Version published
Weekly downloads
146
increased by135.48%
Maintainers
1
Install size
37.4 MB
Created
Weekly downloads
 

Changelog

Source

[17.0.0] - 2024-04-30

Added

  • Angular 17 support

Readme

Source

ngx-source-obfuscation

Angular Builder CLI which integrates the javascript-obfuscation project into angular.

Getting Started

Prerequisites

  • Package manager like yarn or npm
  • Angular 8 or higher.

Installing

Yarn
yarn add -D @rcarver/ngx-source-obfuscation
Npm
npm i -D @rcarver/ngx-source-obfuscation
Version Table
VersionAngular
^1.0.08
^2.0.09
^16.0.016
^17.0.017
Angular Setup

Create a target in your angular.json file. Like the one shown bellow. Other targets like lint or build are located in the same place.

Important make sure your levels of obfuscation and performance is suitable for your project! The default parameters are most likely not what you want.

{
  "obfuscate": {
    "builder": "@rcarver/ngx-source-obfuscation:obfuscate",
    "options": {
      "files": [
        {
          "glob": "main*.js",
          "input": "www",
          "output": "www"
        }
      ],
      "sourceMap": true,
      "sourceMapMode": "separate"
    },
    "configurations": {
      "production": {
        "debugProtection": true,
        "debugProtectionInterval": true,
        "sourceMap": false
      }
    }
  }
}

Files are obfuscated in-place (existing files are modified). A Live Demo of the obfuscation library https://obfuscator.io/ is provided by the author of the library. A list of available configuration options can be found here

Running the task
General

The angular cli target can be invoked like every other target <project>:<target>:<configuration>.

Examples
Yarn

"Dev Build"

yarn ng run app:obfuscate

Prod Build

yarn ng run app:obfuscate:production
Npm

"Dev Build"

npx ng run app:obfuscate

Prod Build

npx ng run app:obfuscate:production

Built With

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Nicolas Schäfli - Initial work - d3r1w
  • Russ Carver - Angular 16 & 17 upgrades - russcarver

Acknowledgments

License

This project is licensed under the GPL-v3 License - see the LICENSE.md file for details

@russcarver/ngx-source-obfuscation Copyright (C) 2023-2024

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

Keywords

FAQs

Last updated on 30 Apr 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc