archive
/
JSFuckify
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
JSFuckify/README.md

26 lines
930 B
Markdown
Raw Permalink Normal View History

2016-03-25 15:39:04 +00:00
# JSFuckify [![Circle CI](https://circleci.com/gh/RealOrangeOne/JSFuckify.svg?style=svg)](https://circleci.com/gh/RealOrangeOne/JSFuckify)
2016-03-24 14:41:19 +00:00
Browserify transformer and CLI to convert normal JS into JSFuck
2016-03-25 15:39:04 +00:00
## Installation
Installation can be done using [npm](https://www.npmjs.com/package/jsfuckify).
npm install jsfuckify --save
## Usage
#### With Browserify
browserify <input> -o <output> -t jsfuckify
#### CLI
CLI Support coming soon!
## How it works
This transform uses the [jscrewit](https://github.com/fasttime/JScrewIt) module to do the conversion, and adds minimal overhead to keep the build time fast!
## What is JSFuck?
JSFuck is an esoteric and educational programming style based on the atomic parts of JavaScript. It uses only six different characters to write and execute code. It does not depend on a browser, so you can even run it on Node.js.
More info can be found [here](http://www.jsfuck.com/).