0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

oak のサンプル (その1)

Last updated at Posted at 2020-05-19

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/ にアクセス
oak_may1901.png

確認したバージョン

$ deno --version
deno 1.27.2 (release, x86_64-unknown-linux-gnu)
v8 10.8.168.4
typescript 4.8.3
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?