Lokale Deno-Anwendungen entwickeln
Erstellen und führen Sie einfache Deno-Anwendungen lokal aus, mit Schwerpunkt auf Datei-I/O und Netzwerkanfragen.
Lokale Deno-Anwendungen entwickeln ist eine kostenlose Edge Computing with Cloudflare Workers & Deno-Lektion auf CoddyKit. Dies ist Lektion 3 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des Edge Computing with Cloudflare Workers & Deno-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der Edge Computing with Cloudflare Workers & Deno-Kurs umfasst insgesamt 4 Lektionen.
Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.
Your First Local Deno App
Welcome! In this lesson, we'll dive into building and running Deno applications right on your local machine.
Developing locally is crucial for testing and iterating quickly before deploying to the edge.
We'll focus on two fundamental operations: reading and writing files, and making network requests.
Hello, Deno!
Let's start with a classic "Hello, World!" program. Deno executes TypeScript or JavaScript directly.
Save this code as main.ts and run it using the deno run command in your terminal.
// main.ts
console.log("Hello from local Deno!");Accessing Local Files
Deno has a secure permission model. To read files, you must explicitly grant permission using the --allow-read flag.
The Deno.readTextFile() function is an asynchronous way to read the content of a file as a string.
Deno.readTextFile(path): Reads a file.--allow-read: Grants permission to read files.
Reading a Text File
Let's create a file named hello.txt with some content, then read it using Deno.
Remember to use the --allow-read flag when running this script!
// read_file.ts
// First, create a file named hello.txt with content like "Deno is awesome!"
async function readFileContent() {
try {
const filePath = "./hello.txt";
const content = await Deno.readTextFile(filePath);
console.log("File Content:", content);
} catch (error) {
console.error("Error reading file:", error.message);
}
}
readFileContent();Saving Data to Files
Just like reading, writing files also requires explicit permission: --allow-write.
The Deno.writeTextFile() function allows you to write a string to a file. It will create the file if it doesn't exist, or overwrite it if it does.
Deno.writeTextFile(path, data): Writes data to a file.--allow-write: Grants permission to write files.
Writing to a Text File
Let's write some new content into a file. We'll create output.txt with a simple message.
Run this with deno run --allow-write write_file.ts.
// write_file.ts
async function writeFileContent() {
try {
const filePath = "./output.txt";
const content = "This is new content written by Deno!";
await Deno.writeTextFile(filePath, content);
console.log("File written successfully to", filePath);
} catch (error) {
console.error("Error writing file:", error.message);
}
}
writeFileContent();Fetching Data from the Web
Deno includes a built-in fetch API, similar to browsers, for making HTTP requests.
To allow your Deno application to access the network, you need to use the --allow-net flag.
fetch(url): Initiates a network request.--allow-net: Grants network access.
Getting Data from an API
Let's fetch some public data from a test API. We'll get a list of posts from JSONPlaceholder.
Run this with deno run --allow-net fetch_data.ts.
// fetch_data.ts
async function fetchData() {
try {
const response = await fetch("https://jsonplaceholder.typicode.com/posts/1");
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
const data = await response.json();
console.log("Fetched Data:", data);
} catch (error) {
console.error("Error fetching data:", error.message);
}
}
fetchData();Deno Permissions Check
Deno prioritizes security through explicit permissions. Which flag is needed to allow a Deno script to read a local file AND make an HTTP request?
Local Deno Apps Summary
Great job! You've learned how to build and run simple Deno applications locally.
- We covered using
deno runfor executing scripts. - You practiced reading and writing files using
Deno.readTextFile()andDeno.writeTextFile()with their respective--allow-readand--allow-writepermissions. - You also fetched data from an external API using the
fetchAPI and the--allow-netflag.
These are core skills for any Deno developer, setting you up for more complex applications, including those deployed to the edge!
Häufig gestellte Fragen
Ist die Lektion „Lokale Deno-Anwendungen entwickeln“ kostenlos?
Ja — der vollständige Text von „Lokale Deno-Anwendungen entwickeln“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des Edge Computing with Cloudflare Workers & Deno-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der Edge Computing with Cloudflare Workers & Deno-Kurs umfasst insgesamt 4 Lektionen.
Was lerne ich in „Lokale Deno-Anwendungen entwickeln“?
Erstellen und führen Sie einfache Deno-Anwendungen lokal aus, mit Schwerpunkt auf Datei-I/O und Netzwerkanfragen. Du übst Edge Computing with Cloudflare Workers & Deno mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.
Brauche ich Erfahrung, um Edge Computing with Cloudflare Workers & Deno zu starten?
Keine Vorkenntnisse erforderlich. Edge Computing with Cloudflare Workers & Deno auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 3 von 4.
Wie lange dauert die Lektion „Lokale Deno-Anwendungen entwickeln“?
Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.
Kann ich in dieser Edge Computing with Cloudflare Workers & Deno-Lektion Code schreiben und ausführen?
Ja. Jede Edge Computing with Cloudflare Workers & Deno-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.
Alle Lektionen in diesem Kurs
- Grundlagen der Deno-Laufzeitumgebung
- Modulsystem und Berechtigungen
- Lokale Deno-Anwendungen entwickeln
- Deno-Anwendungen testen