Crates.io | liqr |
lib.rs | liqr |
version | 1.0.1 |
source | src |
created_at | 2022-12-26 11:03:26.928795 |
updated_at | 2023-05-03 19:00:25.93865 |
description | A lightweight CLI to generate QR codes for live servers |
homepage | https://liqr.vercel.app |
repository | https://github.com/Abhishek-More/liqr |
max_upload_size | |
id | 745708 |
size | 1,172,570 |
Have you ever used your phone or tablet to access a web app running on live-server?
If so, you probably went through the tedious process of:
LiQR (pronounced 'liquor') fixes this problem by generating a QR code in your terminal that links to your live server.
Install using cargo:
cargo install liqr
To generate a QR code at [local_ip]:[port]:
liqr [port]
The default port is 5500
Example: liqr 3000
→ https://localhost:3000
To create a QR code for [local_ip]:[port][route]:
liqr [port] -r [route]
Example: liqr 3000 -r /api/users
→ https://localhost:3000/api/users
To create a general QR code for [url]:
liqr -u [url]
Example: liqr -u https://google.com
→ https://google.com