https://github.com/emarifer/youtube_search
Web application developed with Rust/WebAssembly + Yew + Tailwindcss.
https://github.com/emarifer/youtube_search
rust tailwindcss trunk wasm wasm-bindgen yew yew-framework
Last synced: 3 months ago
JSON representation
Web application developed with Rust/WebAssembly + Yew + Tailwindcss.
- Host: GitHub
- URL: https://github.com/emarifer/youtube_search
- Owner: emarifer
- License: mit
- Created: 2023-02-16T12:26:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T12:31:27.000Z (over 3 years ago)
- Last Synced: 2025-01-17T05:26:45.303Z (over 1 year ago)
- Topics: rust, tailwindcss, trunk, wasm, wasm-bindgen, yew, yew-framework
- Language: Rust
- Homepage: https://emarifer.github.io/youtube_search/
- Size: 572 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web application developed with Rust/WebAssembly + Yew + Tailwindcss.
## To run the app:
Add the WebAssembly target::
```
$ rustup target add wasm32-unknown-unknown
```
Install Trunk to run the app:
```
$ cargo install trunk
```
Add your Youtube api key in the env.rs file:
```
pub static API_KEY: &str = "TU_API_KEY";
```
Run the app:
```
$ trunk serve
```
Build the application by running:
```
$ trunk build --release
```