随笔分类 -  Node

使用VsCode断点调试TS
摘要:目录下新建 tsconfig.json { "compilerOptions": { "module": "commonjs", "target": "es5", "noImplicitAny": true, "outDir": "./dist", "sourceMap": true }, "inc 阅读全文
posted @ 2020-07-12 18:00 DMC-尼禄 阅读(4167) 评论(0) 推荐(0)
koa 快速保存文件的服务器
摘要:import * as Koa from "koa"; import * as fs from "fs"; import * as path from "path"; const app = new Koa(); app.use(async ctx => { // console.log(ctx.u 阅读全文
posted @ 2020-06-11 16:45 DMC-尼禄 阅读(406) 评论(0) 推荐(0)