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

https://github.com/wei/rot47

Node Tool for ROT47 https://rot47.net
https://github.com/wei/rot47

Last synced: 11 months ago
JSON representation

Node Tool for ROT47 https://rot47.net

Awesome Lists containing this project

README

          

# ROT47
Node Tool for ROT47 https://rot47.net

### NPM

#### Installation
`$ npm i rot47 --save`

#### Usage
```
var rot47 = require('rot47')
rot47('abc')
-> '234'
```

#### CLI Installation
`$ npm i rot47 -g`

#### CLI Usage
```
$ rot47 "abc"
234

$ rot47 file.txt
...

$ gzip -d -c file.txt | base64 -D | rot47 > orig.txt
```

## Author
[**Wei He**](https://whe.me) [_github@weispot.com_](mailto:github@weispot.com)