oak のサンプル (その1)
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/[email protected]/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/ にアクセス
Author And Source
この問題について(oak のサンプル (その1)), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/a16a8b63ba7d9d50f8f1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .