🔧 AI Nachrichten The Next Terrorist Attack Is Predictable(10.09.2026 um 23:41 Uhr)
🔧 AI Nachrichten Could A.I. Really Kill All Humans?(10.09.2026 um 23:53 Uhr)
🔧 AI Nachrichten Amazon Prime Video Uses A.I. for Lip-Synced Translations(11.09.2026 um 01:56 Uhr)
🔧 AI Nachrichten McClatchy Makes Deep Job Cuts to Newspapers Around the Country(11.09.2026 um 04:25 Uhr)
🔧 AI Nachrichten Law schools tell students to put AI away(07.09.2026 um 16:37 Uhr)
🔧 AI Nachrichten Can Huawei build China’s answer to ASML?(08.09.2026 um 04:57 Uhr)
🔧 AI Nachrichten AI is ushering in an era of mass toe-treading at work(08.09.2026 um 06:00 Uhr)
🔧 AI Nachrichten The Next Terrorist Attack Is Predictable(10.09.2026 um 23:41 Uhr)
🔧 AI Nachrichten Could A.I. Really Kill All Humans?(10.09.2026 um 23:53 Uhr)
🔧 AI Nachrichten Amazon Prime Video Uses A.I. for Lip-Synced Translations(11.09.2026 um 01:56 Uhr)
🔧 AI Nachrichten McClatchy Makes Deep Job Cuts to Newspapers Around the Country(11.09.2026 um 04:25 Uhr)
🔧 AI Nachrichten Law schools tell students to put AI away(07.09.2026 um 16:37 Uhr)
🔧 AI Nachrichten Can Huawei build China’s answer to ASML?(08.09.2026 um 04:57 Uhr)
🔧 AI Nachrichten AI is ushering in an era of mass toe-treading at work(08.09.2026 um 06:00 Uhr)

🔧 Programmierung 🕛 vor 1 Jahr 6 Min Lesezeit
0

Currency converter in Rust + WebAssembly

↗ Quelle (dev.to)
🗣️ Stimme:

Hi everyone in this post I'm going to show you how to create a simple currency converter written in Rust with WebAssembly, first you need to install Rust using Rust official website below for windows:



() so you will get the option to edit file directly.



in Cargo.toml file write this in it:




CODE
[dependencies]
reqwest = { version = "=0.11.7", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"

[dev-dependencies]
wasm-bindgen-test = "0.3"

[lib]
crate-type = ["cdylib"]







Then inside src folder located inside your main folder that first created with Cargo command you will find another file we need to edit it's called lib.rs in this file we will write Rust code:




CODE
use wasm_bindgen::prelude::*;
use wasm_bindgen_futures::JsFuture;
use reqwest::Error;
use serde::Deserialize;
use std::collections::HashMap;

#[derive(Deserialize)]
struct ExchangeRates {
rates: HashMap<String, f64>,
}

#[wasm_bindgen]
pub async fn convert_currency(base: String, target: String, amount: f64) -> Result<JsValue, JsValue> {
let url = format!("https://api.exchangerate-api.com/v4/latest/{}", base);

let response = reqwest::get(&url)
.await
.map_err(|err| JsValue::from_str(&format!("Failed to fetch rates: {}", err)))?;

let rates: ExchangeRates = response.json()
.await
.map_err(|err| JsValue::from_str(&format!("Invalid response format: {}", err)))?;

if let Some(&rate) = rates.rates.get(&target) {
let converted = amount * rate;
Ok(JsValue::from_f64(converted)) // Return the converted amount
} else {
Err(JsValue::from_str(&format!("Currency {} not found", target)))
}
}







Then we will get to the part where we need to create folders and files needed for web view.

Open Powershell then navigate to your folder path make sure you're inside the main folder you created with Cargo new command then run this command:



wasm-pack build --target web



This will create folders named pkg and target and other files.



Then at your main folder that you created with cargo new folder name here --lib create HTML file named index.html inside it write this code:




CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency Converter</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.container {
background: #ffffff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
padding: 20px 30px;
width: 350px;
text-align: center;
}

h1 {
color: #333;
margin-bottom: 20px;
}

label {
display: block;
margin: 10px 0 5px;
font-weight: bold;
color: #555;
}

input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}

button {
width: 100%;
padding: 10px;
background-color: #007bff;
border: none;
border-radius: 5px;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}

button:hover {
background-color: #0056b3;
}

.result {
margin-top: 20px;
font-size: 18px;
color: green;
font-weight: bold;
}

.error {
margin-top: 20px;
font-size: 16px;
color: red;
}
</style>
</head>
<body>
<div class="container">
<h1>Currency Converter</h1>
<form id="convert-form">
<label for="base">Base Currency:</label>
<input type="text" id="base" name="base" placeholder="e.g., USD" required>

<label for="target">Target Currency:</label>
<input type="text" id="target" name="target" placeholder="e.g., EUR" required>

<label for="amount">Amount:</label>
<input type="number" id="amount" name="amount" placeholder="e.g., 100" required>

<button type="submit">Convert</button>
</form>
<div class="result" id="result"></div>
<div class="error" id="error"></div>
</div>

<script type="module">
import init, { convert_currency } from "../pkg/name of your folder.js";

async function main() {
await init();

const form = document.getElementById("convert-form");
const resultDiv = document.getElementById("result");
const errorDiv = document.getElementById("error");

form.addEventListener("submit", async (event) => {
event.preventDefault();

// Clear previous messages
resultDiv.textContent = "";
errorDiv.textContent = "";

const base = document.getElementById("base").value.toUpperCase();
const target = document.getElementById("target").value.toUpperCase();
const amount = parseFloat(document.getElementById("amount").value);

if (isNaN(amount) || amount <= 0) {
errorDiv.textContent = "Please enter a valid amount.";
return;
}

try {
const convertedAmount = await convert_currency(base, target, amount);
if (convertedAmount === null || isNaN(convertedAmount)) {
throw new Error("Invalid conversion result.");
}

resultDiv.textContent = `${amount} ${base} = ${convertedAmount.toFixed(2)} ${target}`;
} catch (err) {
errorDiv.textContent = `Error: ${err.message || err}`;
}
});
}

main();
</script>

</body>
</html>







Make sure that this line import init, { convert_currency } from "../pkg/**name of your folder.js**"; javascript file found in pkg folder make sure it points to the correct .js file normally it's named after your main folder name ends in .js found inside pkg folder.



To run your server on local machine navigate to your main folder that we created with cargo new **folder name here** --lib and run this command to start server on your machine:

python -m http.server


to install python refer to

(https://www.python.org/downloads/windows/)



after running the command, open web browser of your choice and type localhost:8000 or 127.0.0.1:8000 and the enter.



You need to enter currency codes for that check this website:

https://taxsummaries.pwc.com/glossary/currency-codes



Hope you enjoy it and apologies for the long post.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
2 Quellen
Could A.I. Really Kill All Humans?
1 Quelle
The Next Terrorist Attack Is Predictable
1 Quelle
Anthropic Says It Blocked Possible Efforts to Build Biological Weapons
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Currency converter in Rust + WebAssembly

Thematisch verwandte Begriffe: Currency, converter, Rust, WebAssembly · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...