wasmCard

An Online vCard Generator written in Rust.
## 📚 About A WebAssebmly VCard Generator Supports generating vCards (.vcf), print-ready PDF business cards and QR Codes. ## 🎮 Features * Supported properties as of yet: name, address, telephone * Output and Download as vCard (.vcf) * Output and Download as QR Code * Generates a dummy PDF ## 🗺 Roadmap * Add more properties * Button for adding more of one type of property (Support is already there) * Put generation and download both in download button * Generate PDF ## 🚲 Usage ### 🛠️ Needed tools * [Standard rust toolchain](https://www.rust-lang.org/tools/install) * [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) * HTTP Server (python has one!) ### 📦 Build with `wasm-pack build` ``` wasm-pack build --target web ``` ### 🔍 Use the debug flag for tracing errors ``` wasm-pack build --debug --target web ``` ### 🎬 Run on python server ``` python -m http.server 8000 ```