内容简介:As first adopters tinker with Deno, many people are trying to figure out tooling that parallels what they’re used to in node. If you’re looking for a lightweight web application framework like express.js, you probably want to explore
As first adopters tinker with Deno, many people are trying to figure out tooling that parallels what they’re used to in node. If you’re looking for a lightweight web application framework like express.js, you probably want to explore oak .
Note:Many of the examples in this post are taken from the github documentation!
What is Oak?
Oak is self-described as “A middleware framework for Deno’s http server, including a router middleware.”
To be completely transparent, oak is actually much more similar to koa for node than express.js, but express users should be very comfortable with oak.
Creating a Hello World App with Oak
To create a “Hello World!” app in deno with oak, we import Application
from the oak module. You create a new instance of the app, add a handler for all requests that set the response body to "Hello World!"
, and then listen on a port.
Make sure to pin down the version of oak in your import statement! Here it’s pinned down to version 4.0.0.
import { Application } from 'https://deno.land/x/oak@v4.0.0/mod.ts';
const app = new Application();
app.use(ctx => {
ctx.response.body = 'Hello World!';
});
await app.listen({ port: 8000 });
Now if you browse to http://localhost:8000
, you should see our Hello world!
message!
Adding Routes
Oak includes a router as well! Simply import the Router
, create a new instance of it, specify your routes, and then make sure to add it as middleware to your app.
import { Application, Router } from 'https://deno.land/x/oak/mod.ts';
const books = new Map<string, any>();
books.set('1', {
id: '1',
title: 'The Hound of the Baskervilles',
author: 'Conan Doyle, Author',
});
const router = new Router();
router
.get('/', context => {
context.response.body = 'Hello world!';
})
.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());
await app.listen({ port: 8000 });
Note the helpful router.allowedMethods()
middleware, which will let clients know when a route is not allowed!
Onward!
This should hopefully get you underway! There is much more functionality available in oak, but now that you know the solution to persue and have had a basic primer, you should be able to go from here.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数字化生存
(美)Nicholas Negroponte(尼古拉·尼葛洛庞帝) / 胡泳、范海燕 / 电子工业出版社 / 2017-1-1 / 68.00
《数字化生存》描绘了数字科技为我们的生活、工作、教育和娱乐带来的各种冲击和其中值得深思的问题,是跨入数字化新世界的*指南。英文版曾高居《纽约时报》畅销书排行榜。 “信息的DNA”正在迅速取代原子而成为人类生活中的基本交换物。尼葛洛庞帝向我们展示出这一变化的巨大影响。电视机与计算机屏幕的差别变得只是大小不同而已。从前所说的“大众”传媒正演变成个人化的双向交流。信息不再被“推给”消费者,相反,人们或他......一起来看看 《数字化生存》 这本书的介绍吧!