https://github.com/ifvictr/asciicam
π¨βπ» Video chat through the terminal using ASCII art. Built at Hack Lodge Summer 2019, Bay Area.
https://github.com/ifvictr/asciicam
ascii-art cli video-chat webrtc
Last synced: about 1 month ago
JSON representation
π¨βπ» Video chat through the terminal using ASCII art. Built at Hack Lodge Summer 2019, Bay Area.
- Host: GitHub
- URL: https://github.com/ifvictr/asciicam
- Owner: ifvictr
- Created: 2019-08-20T04:27:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-12T05:53:01.000Z (almost 3 years ago)
- Last Synced: 2023-08-07T00:11:06.737Z (about 2 years ago)
- Topics: ascii-art, cli, video-chat, webrtc
- Language: TypeScript
- Homepage:
- Size: 1.07 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# asciicam
π¨βπ»π©βπ» Video chat through the terminal using ASCII art. Built at Hack Lodge Summer 2019, Bay Area.
## Installation
_Packaged binaries installable via npm will be available soon. Below are the instructions for the development setup._
```bash
git clone https://github.com/ifvictr/asciicam
```## Usage
### Client
```bash
cd asciicam/cli
# Install dependencies
yarn
# Start the client
node -r ts-node/register index.ts
``````bash
Usage: index.ts [options] [command]Options:
-h, --help output usage informationCommands:
create|c [options] [passphrase] Create a new chat room, optionally locked with the specified passphrase
join|j [options] [passphrase] Join the specified chat room
```### Server
```bash
cd asciicam/server
# Install dependencies
yarn
# Start asciicam server in production modeβ¦
yarn run prod
# β¦or development
yarn run dev
```