https://github.com/domchen/uglifyts
A source code obfuscation tool for TypeScript
https://github.com/domchen/uglifyts
Last synced: about 1 year ago
JSON representation
A source code obfuscation tool for TypeScript
- Host: GitHub
- URL: https://github.com/domchen/uglifyts
- Owner: domchen
- License: mit
- Created: 2017-08-06T08:46:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-08T15:55:36.000Z (almost 9 years ago)
- Last Synced: 2025-03-22T10:46:55.870Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 17.6 KB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduction
UglifyTS is a source code obfuscation tool for TypeScript. It accepts TypeScript source files, and generates the functionally equivalent source files which are much harder to understand or reverse-engineer. This tool is usually used for source code protection.
## Installation
First make sure you have installed the latest version of [node.js](http://nodejs.org/)
(You may need to restart your computer after this step).
For use as a command line app:
```
npm install -g uglifyts
```
For programmatic use:
```
npm install uglifyts
```
## Usage
```
uglifyts [outDir] [options]
```