Skip to content

Deno

Instal·la deno:

Terminal window
irm https://deno.land/install.ps1 | iex

Verifica la instal·lació:

Terminal window
deno --version

Create a TypeScript file called main and include the following code:

main.ts
function greet(name: string): string {
return `Hello, ${name}!`
}
console.log(greet("world"))

Save the file and run it with Deno:

Terminal window
$ deno main.ts
Hello, world!

First Project

How to Run Playwright with Deno


El contingut d'aquest lloc web té llicència CC BY-NC-ND 4.0.

©2022-2025 xtec.dev