![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vite-obfuscator-zznode
Advanced tools
A Vite plugin to obfuscate JavaScript files in the build output.
1、这是一个基于 javascript-obfuscator 实现的 vite for vue3 的 js 混淆插件。This is a JavaScript obfuscator based implementation of vite for Vue3 JavaScript obfuscation plugin
2、使用案例:Use Cases
//vite.config.ts
import obfuscatorPlugin from "vite-obfuscator-zznode";
export default {
plugins: [
...,
obfuscatorPlugin({
inputDir: "./dist/static/js", // 这是你打包后的js文件存放路径 This is the storage path for your packaged JavaScript file
outputDir: "./dist/static/js", // 这是你混淆后输出的js文件路径 This is the path to the JavaScript file that you output after confusion
options: { //这些都是配置。详见javascript-obfuscator 文档配置。直接搬运过来即刻。 These are all configurations. Please refer to the JavaScript obfuscator documentation for configuration details. Directly transport it over immediately
compact: true,
controlFlowFlattening: true,
controlFlowFlatteningThreshold: 0.75,
deadCodeInjection: true,
deadCodeInjectionThreshold: 0.4,
disableConsoleOutput: true,
})
]
}
FAQs
A Vite plugin to obfuscate JavaScript files in the build output.
We found that vite-obfuscator-zznode demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.