https://github.com/samislam/string-encryptor
Encrypt decrypt string simple interactive cli tool
https://github.com/samislam/string-encryptor
Last synced: 3 months ago
JSON representation
Encrypt decrypt string simple interactive cli tool
- Host: GitHub
- URL: https://github.com/samislam/string-encryptor
- Owner: samislam
- Created: 2024-12-21T12:05:18.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-18T08:36:18.000Z (3 months ago)
- Last Synced: 2025-03-18T09:35:40.109Z (3 months ago)
- Language: TypeScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# string-encryptor
a small CLI application that encrypts/decrypts a string without leaving a trace, all in-memory on the system.
# Installation
Executables are available for Linux systems, if you're on windows or Mac OSx, you have to run the project yourself using [bun](https://bun.sh/), install bun then run the application using `bun start`.
If you're on Linux:
### 1 Download
| OS | Download |
| --------- | -------------------------------------------------------------------------------------------------- |
| Linux x64 | [Download](https://github.com/samislam/string-encryptor/releases/download/v1.0.0/string-encryptor) |
### 2 Give it execution permissions
```sh
$ sudo mv ./string-encryptor /usr/bin
$ sudo chmod +x ./string-encryptor
```--------
To install dependencies:
```bash
bun install
```To run:
```bash
bun run index.ts
```This project was created using `bun init` in bun v1.1.45. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.