-
* **Node Version**:
* **Egg Version**:
* **Plugin Name**:
* **Plugin Version**:
* **Platform**:
* **Mini Showcase Repository**:
-
想了解下,在开发的情况下,有没有办法提升重启速度?可以选择性牺牲一些东西。比如模板是实时加载的。midway 重启速度稍慢egg 3秒左右。或者这边是否说个方向。这边去调试下源码,看看能不能把一些东西走异步。避免加载影响?
-
## 1.修改默认启动端口
start要改bootstrap.js才能修改端口号
```typescript
const web = new WebFramework().configure({
port: 6666
});
```
dev则是要在script里面加```--port```参数
![image](https://user-images.githubuserc…
-
* **Node Version**:
* **Egg Version**:
* **Plugin Name**:
* **Plugin Version**:
* **Platform**:
* **Mini Showcase Repository**:
最终只生成一个app/index.d.ts文件,哪个环节出现问题了。。。
-
背景:由于想转成TS开发,所以我们打算直接从egg迁移到midway
疑惑:我们在eggjs的基础上封装了一层企业框架framework,定义了一些方法跟配置,我们在这块迁移的时候是应该fork midway去做吗?还是有什么推荐?
-
使用f test能够成功测试,但用jest(按 [docs: 增加 Jest 使用文档](https://github.com/midwayjs/midway/pull/358/commits/5153c521ce9c4a3d55ce0ea158517406cc2529e7) 配置)会报错:
```
● /test/index.test.ts › should use default eve…
yoodu updated
3 years ago
-
node: 14.15
midwayjs: 2.8.13
```
@Provide()
@Controller('/dev')
export class HomeController {
@Get('/api/route')
async getRoute() {
const webRouterCollector = new WebRouterColle…
-
node: 14.15
midwayjs: 2.8.13
路由信息如下:
```
// 20210319142637
// http://localhost:3000/dev/api/route
[
{
"prefix": "/swagger-ui",
"routerName": "",
"url": "/json",
"req…
-
Node Version: 14
Plugin Name: @midwayjs/grpc , @midwayjs/koa
Plugin Version: 2.8.11
Description:
当同时安装@midwayjs/grpc和@midwayjs/koa组件时, 运行 midway-bin dev --ts , 默认以grpc框架启动,导致koa的app.use失效。…
-
您好,新建ssr midwayjs+vue3项目后使用vite访问任意页面404,操作步骤与debug日志如下:
```bash
$ npm init ssr-app wenku -- --template=midway-vue3-ssr
$ cd wenku && yarn && yarn add -D vite @vitejs/plugin-vue
```
```log
$…