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 のサンプル (その3)

Last updated at Posted at 2020-05-20

Deno のフレームワーク oak のサンプルです。 Static content を改造しました。

フォルダー構造

$ tree
.
├── examples
│   └── static
│       └── index.html
└── oak_static.ts
oak_static.ts
// ---------------------------------------------------------------
//      oak_static.ts
//
//                                      Dec/24/2023
//
// ---------------------------------------------------------------
import { Application,send } from "https://deno.land/x/oak/mod.ts";

const app = new Application()

app.use(async (context) => {
  await send(context, context.request.url.pathname, {
    root: `${Deno.cwd()}/examples/static`,
    index: "index.html",
  })
})

console.log("*** start ***")
console.log(`${Deno.cwd()}/examples/static`)
await app.listen({ port: 8000 })

// ---------------------------------------------------------------
examples/static/index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset=utf-8">
<title>Welcome to nginx!</title>
</head>
<body>
<h1>Welcome to oak!</h1>
<blockquote>
こんにちは<p />
</blockquote>
<hr />
May/20/2020 AM 09:44<p />
</body>
</html>

実行コマンド

deno run --allow-net --allow-read oak_static.ts

http://localhost:8000/ にアクセス
oak_may2004.png

0
0
2

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?