Closed FurryRbl closed 9 months ago
关于问题 2:port 是 @koishijs/plugin-server 的配置项。
import server from '@koishijs/plugin-server'
app.plugin(server, {
port: 6200,
})
为什么不加载 server 就会直接退出呢?因为 node 进程会检测是否有持续占用的 handle,没有 handle 的情况下就会直接退出,开了 server 就不会退出了。
关于问题 2:port 是 @koishijs/plugin-server 的配置项。
import server from '@koishijs/plugin-server' app.plugin(server, { port: 6200, })
为什么不加载 server 就会直接退出呢?因为 node 进程会检测是否有持续占用的 handle,没有 handle 的情况下就会直接退出,开了 server 就不会退出了。
感觉可以但我试不了会抛出问题1的错误。。。。其实我都是看文档部署的
已经复现此问题,似乎是 Console 构建结果的问题。
import Console from '@koishijs/plugin-console'
app.plugin(Console) // 类型正常,运行报错
app.plugin(Console.default) // 类型报错,运行正常
我们会尽快修复。
已经复现此问题,似乎是 Console 构建结果的问题。
import Console from '@koishijs/plugin-console' app.plugin(Console) // 类型正常,运行报错 app.plugin(Console.default) // 类型报错,运行正常
我们会尽快修复。
幸苦了
刚刚修了 server 的部分,console 的部分稍等。
发了前前后后十几个版本,如果之后还有类似的问题可以同样提这里。
用不了的话尝试一下 ffff['default'] 的写法,ts 不会报错。
Describe the bug
问题1:
问题2”:
Steps to reproduce
问题1代码:
问题二代码:
Expected behavior
正常运行并出现6200端口
Screenshots
No response
Versions
Additional context
如果采用CJS写法则不会出现如果采用CJS和TS写法则不会出现问题1
但仍然会出现问题2
问题1
但仍然会出现问题2