プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

deno

Kohei Watanabe (Apr 22, 2024, 12:15 PM +0900) 65d2e4a7 08f797b3

+21
+13
deno/deno.json
··· 1 + { 2 + "tasks": { 3 + "dev": "deno run --watch main.ts" 4 + }, 5 + "deploy": { 6 + "project": "d7ff4021-31bb-4663-b015-12a9e7b9bb64", 7 + "exclude": [ 8 + "**/node_modules" 9 + ], 10 + "include": [], 11 + "entrypoint": "main.ts" 12 + } 13 + }
+8
deno/main.ts
··· 1 + const now = new Date(); 2 + 3 + if (import.meta.main) { 4 + Deno.serve(() => new Response(`${now}: Hello World!`)); 5 + } 6 + 7 + // $ curl https://great-crow-36.deno.dev/ 8 + // Mon Apr 22 2024 03:13:21 GMT+0000 (Coordinated Universal Time): Hello World!