1.0.0 • Published 10 months ago

@sl-code-lords/project-obfuscator v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Status GitHub Issues GitHub Pull Requests License


📝 Table of Contents

🧐 About

Obfuscate an entire JS project with a single click.

🏁 Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes

Installing

yarn add @sl-code-lords/project-obfuscator

or

npm i @sl-code-lords/project-obfuscator

🎈 Usage

const { obfuscate, BEST_NODE_HIGH_PERFORMANCE_CONFIG } = require('@sl-code-lords/project-obfuscator')
const Source_Folder = '/example/folder/'
const Store_Folder = '/example/obstore/'
const Bin_Path = '/example/.bin/' // its helps to ob only changed files
const Comment = {
	top: 'Javascript Project Obfuscator \n Coded By Ravindu Manoj\n\nModified File : #filename#\nModified Date : #date#\nModified Time : #time#',
	bottom: 'Powered By https://www.npmjs.com/package/@sl-code-lords/project-obfuscator',
	dont_set : false,
	timeZone : 'Asia/Colombo', // Time Zone For #time# && #date#
	deactive : false //set value as true to deactive comments 
}
// keywords == #filename# && #date# && #time# 


function obfuscateFolder() {
	console.log('starting...')
	obfuscate(Source_Folder, Store_Folder, BEST_NODE_HIGH_PERFORMANCE_CONFIG, Comment, Bin_Path)
	console.log(Source_Folder + 'Folder Successfull Obfuscated To ' + Store_Folder)
}

obfuscateFolder()

Obfuscate Configs

You Can Use

const {
	BEST_NODE_HIGH_PERFORMANCE_CONFIG,
	HIGH_OB_LOW_PERFORMANCE_CONFIG,
	MEDIUM_OB_OPTIMAL_PERFORMANCE_CONFIG,
	LOW_OB_HIGH_PERFORMANCE_CONFIG,
	DEFAULT_PRESET_HIGH_PERFORMANCE_CONFIG
} = require('@ravindu01manoj/obfuscator')

or

const config = {
		compact: true,
		controlFlowFlattening: true,
		controlFlowFlatteningThreshold: 0.75,
		deadCodeInjection: true,
		deadCodeInjectionThreshold: 0.4,
		debugProtection: false,
		debugProtectionInterval: 0,
		disableConsoleOutput: false,
		domainLock: [],
		domainLockRedirectUrl: 'about:blank',
		forceTransformStrings: [],
		identifierNamesCache: null,
		identifierNamesGenerator: 'hexadecimal',
		identifiersDictionary: [],
		identifiersPrefix: '',
		ignoreRequireImports: false,
		inputFileName: '',
		log: false,
		numbersToExpressions: true,
		optionsPreset: 'default',
		renameGlobals: false,
		renameProperties: false,
		renamePropertiesMode: 'safe',
		reservedNames: [],
		reservedStrings: [],
		seed: 0,
		selfDefending: false,
		simplify: true,
		sourceMap: false,
		sourceMapBaseUrl: '',
		sourceMapFileName: '',
		sourceMapMode: 'separate',
		sourceMapSourcesMode: 'sources-content',
		splitStrings: true,
		splitStringsChunkLength: 10,
		stringArray: true,
		stringArrayCallsTransform: true,
		stringArrayCallsTransformThreshold: 0.5,
		stringArrayEncoding: [],
		stringArrayIndexesType: [
			'hexadecimal-number'
		],
		stringArrayIndexShift: true,
		stringArrayRotate: true,
		stringArrayShuffle: true,
		stringArrayWrappersCount: 1,
		stringArrayWrappersChainedCalls: true,
		stringArrayWrappersParametersMaxCount: 2,
		stringArrayWrappersType: 'variable',
		stringArrayThreshold: 0.75,
		target: 'node',
		transformObjectKeys: true,
		unicodeEscapeSequence: true
	}

✍️ Authors

See also the list of contributors who participated in this project.