Deno修改文件自动部署

37次阅读

共计 423 个字符,预计需要花费 2 分钟才能阅读完成。

视频讲解

https://www.bilibili.com/video/BV18z4y1978E

一起来完成以下步骤:

  1. 安装 https://deno.land/x/denon。确保您的 deno 版本是 1.0.1 以上
  2. 创建一个简单的应用
  3. 运行 denon run main.ts (注:denon 而不是 deno 哦)

main.ts



import {Application, Router} from "https://deno.land/x/oak/mod.ts";

const app = new Application();
const router = new Router();

router.get("/",(ctx) =>{ctx.response.body="Hello World Welcome......";})

app.use(router.routes());
app.use(router.allowedMethods());

await app.listen({port:8000});

正文完
 0