Artnalgo.NET.JSObfuscator.Core 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Artnalgo.NET.JSObfuscator.Core --version 1.0.1
NuGet\Install-Package Artnalgo.NET.JSObfuscator.Core -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Artnalgo.NET.JSObfuscator.Core" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Artnalgo.NET.JSObfuscator.Core --version 1.0.1
#r "nuget: Artnalgo.NET.JSObfuscator.Core, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Artnalgo.NET.JSObfuscator.Core as a Cake Addin
#addin nuget:?package=Artnalgo.NET.JSObfuscator.Core&version=1.0.1

// Install Artnalgo.NET.JSObfuscator.Core as a Cake Tool
#tool nuget:?package=Artnalgo.NET.JSObfuscator.Core&version=1.0.1

Artnalgo.NET.JSObfuscator.Core

Artnalgo.NET.JSObfuscator.Core enriches the .NET ecosystem by offering advanced JavaScript obfuscation capabilities. This library is designed to integrate seamlessly with ASP.NET Core 8 applications, providing developers with effective tools to protect their JavaScript code.

Getting Started

This guide will help you set up Artnalgo.NET.JSObfuscator.Core in your project, ensuring a straightforward implementation process.

Prerequisites

  • .NET 8 SDK

Usage

To incorporate Artnalgo.NET.JSObfuscator.Core into your project, follow these instructions:

  1. Install the Package

    Use the NuGet Package Manager Console:

    Install-Package Artnalgo.NET.JSObfuscator.Core -Version 1.0.0
    
  2. Implement Obfuscation

    Below is a basic example to demonstrate obfuscation:

    using Artnalgo.NET.JSObfuscator.Core;
    
    var obfuscator = new JavascriptObfuscator();
    string originalCode = "function greet() { console.log('Hello, world!'); }";
    string obfuscatedCode = obfuscator.ObfuscateCode(originalCode, ObfuscationLevel.High);
    

Additional Documentation

Feedback

Your feedback is crucial to us! Please let us know your thoughts or report issues through:

Troubleshooting

Consult our documentation for assistance with common problems. If you encounter any issues, don't hesitate to reach out through the feedback channels mentioned above.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Artnalgo.NET.JSObfuscator.Core:

Package Downloads
WebOptimizer.JSObfuscator

Integrates with WebOptimizer to obfuscate JavaScript files, enhancing security for ASP.NET Core applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 150 3/31/2024
1.1.2 103 3/21/2024
1.1.1 91 3/21/2024
1.1.0 114 3/20/2024
1.0.2 112 3/16/2024
1.0.1 87 3/16/2024
1.0.0 102 3/15/2024

Initial release: Introduces robust JavaScript obfuscation capabilities integrated with .NET, leveraging the power of Jint for advanced JavaScript interpretation and manipulation. This version provides essential features including support for variable renaming, control flow flattening, and more to protect your JavaScript code effectively within .NET applications.