An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          


Version
License
TypeScript

## 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]
```