Deno のフレームワーク oak のサンプルです。日本語を表示してみました。
oak01.ts
// ---------------------------------------------------------------
// oak01.ts
//
// May/19/2020
//
// ---------------------------------------------------------------
// import { Application } from "https://deno.land/x/oak/mod.ts"
import { Application } from "https://deno.land/x/oak@v12.5.0/mod.ts"
const app = new Application()
app.use((ctx) => {
console.log ("*** app.use start ***")
ctx.response.headers.set ('Content-Type', 'text/html; charset=utf-8')
var str_out:string = "*** start ***<br />"
str_out += "Hello World!<br />"
str_out += "<blockquote>"
str_out += "こんにちは<br />"
str_out += "</blockquote>"
str_out += "*** May/19/2020 AM 11:21 ***<br/ >"
str_out += "*** end ***<br/ >"
ctx.response.body = str_out
console.log ("*** app.use end ***")
})
await app.listen({ port: 8000 })
// ---------------------------------------------------------------
実行方法
deno run --allow-net oak01.ts
http://localhost:8000/ にアクセス
確認したバージョン
$ deno --version
deno 1.27.2 (release, x86_64-unknown-linux-gnu)
v8 10.8.168.4
typescript 4.8.3