发布于 4年前

Deno 加载依赖包出错

在开发过程中,经常遇到DNS解析域名错误的问题。导致js依赖包没法下载

我们一起来完成以下步骤:

  1. 先来发现问题
  2. 域名是否能访问?
  3. 解析域名(https://www.edoou.com/)的IP%E7%9A%84IP)。在没有使用翻墙 情况下是否能ping通
  4. 修改Hosts文件(C:\Windows\System32\drivers\etc)
  5. 再重新run一下应用

main.ts


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

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

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

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

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

©2020 edoou.com   京ICP备16001874号-3