Deno 加载依赖包出错

我的未来我决定 提交于 2020-08-09 02:51:26

视频讲解

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

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

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

  1. 先来发现问题

  2. 域名是否能访问?

  3. 解析域名(https://www.ipaddress.com/)的IP。在没有使用 openssl 或 shadowsocks 情况下是否能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 }); 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!