1
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 3 years have passed since last update.

oak のサンプル (その2)

Last updated at Posted at 2020-05-20

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

oak_basic.ts
// ---------------------------------------------------------------
//	oak_basic.ts
//
//					May/20/2020
//
// ---------------------------------------------------------------
// import { Application,Router } from "https://deno.land/x/oak/mod.ts"
import { Application,Router } from "https://deno.land/x/oak@v10.1.0/mod.ts"

const books = new Map<string, any>();
books.set("1", { id: "1", title: "それから", author: "夏目漱石", })
books.set("2", { id: "2", title: "夜明け前", author: "島崎藤村", })
books.set("3", { id: "3", title: "舞姫", author: "森鴎外", })

const router = new Router()
router
  .get("/", (context) => {
    context.response.body = "日本文学"
  })
  .get("/book", (context) => {
    context.response.body = Array.from(books.values())
  })
  .get("/book/:id", (context) => {
    if (context.params && context.params.id && books.has(context.params.id)) {
      context.response.body = books.get(context.params.id)
    }
  })

const app = new Application()
app.use(router.routes())
app.use(router.allowedMethods())

console.log("*** start ***")
await app.listen({ port: 8000 })

// ---------------------------------------------------------------

実行方法

deno run --allow-net  oak_basic.ts

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

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

http://localhost:8000/book/3 にアクセス
oak_may2003.png

1
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
1
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?