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
- Host: GitHub
- URL: https://github.com/wei/rot47
- Owner: wei
- License: isc
- Created: 2016-06-09T19:59:36.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-09T21:02:37.000Z (about 8 years ago)
- Last Synced: 2025-06-26T06:51:44.782Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)