当前位置:首页 > 笔记 > node.js

[原创] koa2(nodejs)+vue3+xtermjs打造一个前端终端

🐥🐥🐥🐥🐥🐥🐥2年前 (2022-09-22)607
[原创] koa2(nodejs)+vue3+xtermjs打造一个前端终端
˃ 我自己想要搭建一个线上终端,找了很多帖子,借鉴了他们的思路和代码。 [简书-嘻哈章鱼小丸子](https://www.jianshu.com/p/c53d5692b256?u_atoken=06f1bc3a-1165-4d4e-a08d-6acf0e1b63fa&u_asession=0...

[原创] 关于koa文件上传(文件去重)

🐥🐥🐥🐥🐥🐥🐥2年前 (2022-09-17)314
[原创] 关于koa文件上传(文件去重)
```javascriptconst path = require(‘path’)const fs = require(‘fs’)const crypto = require(‘crypto’)//封装的错误码const { unCorrectFileError } = require(‘../ex...

【转载】Koa2.js router 异步返回ctx.body失效的问题

🐥🐥🐥🐥🐥🐥🐥2年前 (2022-08-15)304
【转载】Koa2.js router 异步返回ctx.body失效的问题
koa2.js,用router返回数据时,正常写法如下(我是将接口封装了) //一个很普通的koa2.js get请求 router.put('/getUserInfo', (ctx, next) =˃ { const data = ctx.request.body ctx.body = {...

koa 2 学习

🐥🐥🐥🐥🐥🐥🐥2年前 (2022-07-26)333
koa 2 学习
一. 项目的初始化1 npm 初始化npm init -y生成package.json文件: 记录项目的依赖 2 git 初始化git init生成’.git’隐藏文件夹, git 的本地仓库 3 创建 ReadMe 文件二. 搭建项目1 安装 Koa 框架npm install koa˂...