egg icon indicating copy to clipboard operation
egg copied to clipboard

🥚 Born to build better enterprise frameworks and apps with Node.js & Koa

Results 351 egg issues
Sort by recently updated
recently updated
newest added

1.docker 启动失败,后又退出很奇怪,可能跟docker的运行机制有关。 2.正常的将egg构建docker镜像,并且查看docker log ,egg启动正常。 3.但在查看docker容器运行时,却始终看到是挂掉的。 4.查看到对应的docker文档说表明的情况来看,egg执行 npm run start 后 就不在脚本页面中执行导致docker觉得无事可做导致关闭。 5.此前还以为端口占用问题。 dockerfile `FROM library/node:lts-alpine COPY . /app WORKDIR /app RUN cd /app && \ npm i --production CMD...

Inactive

## What happens? 我在拉取[examples](https://github.com/eggjs/examples) demo 代码后,开启sequelize-ts demo代码服务后,请求 /posts/1 接口后发生错误,而开启sequelize代码服务则是正常的 sql: SELECT ``.`id`, ``.`title`, ``.`content`, ``.`user_id`, ``.`created_at`, ``.`updated_at`, ``.`created_at` AS `createdAt`, ``.`updated_at` AS `updatedAt`, ``.`user_id` AS `userId`, `user`.`id` AS `user.id`, `user`.`name`...

Inactive

[egg-scripts] Wait Start: 186... [egg-scripts] Wait Start: 187... [egg-scripts] Wait Start: 188... [egg-scripts] Wait Start: 189... [egg-scripts] Wait Start: 190... [egg-scripts] Wait Start: 191... [egg-scripts] Wait Start: 192... [egg-scripts] Wait...

Inactive

` ERROR 29171 nodejs.unhandledExceptionError: write EIO at afterWriteDispatched (internal/stream_base_commons.js:156:25) at writeGeneric (internal/stream_base_commons.js:147:3) at WriteStream.Socket._writeGeneric (net.js:785:11) at WriteStream.Socket._write (net.js:797:8) at writeOrBuffer (internal/streams/writable.js:358:12) at WriteStream.Writable.write (internal/streams/writable.js:303:10) at ConsoleTransport.log (/opt/app/bas-app-node-server/node_modules/egg-logger/lib/transports/console.js:46:22) at Map.log (/opt/app/bas-app-node-server/node_modules/egg-logger/lib/logger.js:79:19)...

Inactive

## Feature - [x] Support TypeScript by default - [x] https://github.com/eggjs/koa/pull/5 - [x] @eggjs/core https://github.com/eggjs/egg-core/pull/265 - [x] https://github.com/eggjs/egg-utils/pull/21 - [x] @eggjs/router https://github.com/eggjs/egg-router/pull/10 - [x] https://github.com/eggjs/egg/pull/5328 - [x] refactor egg with...

semver: major

At present, I want to do micro services. Will grpc be updated? Egjs has too little support for grpc

Inactive

egg-bin依赖的espower-source里依赖es5-ext,这个包 https://github.com/medikoo/es5-ext/blob/main/_postinstall.js 存在政治敏感代码,有其他替代品么

Inactive

![image](https://user-images.githubusercontent.com/19756759/179178415-fdddd3b3-7b2a-400f-9ae0-f8b2686bfed7.png)

Inactive

Node Version: 16.11.0 Egg Version: 2.29.4 Plugin Name: egg-sequelize Plugin Version: 6.0.0 Platform: mac Mini Showcase Repository: egg-sequelize 依赖于 sequelize,前一段时间用的 是 [email protected] 一直正常,最近删除了 lock 文件,install 之后,sequelize升级到了 6.17.0, yarn run tsc...

Inactive

### 超过三级嵌套的时候,想合利用Sequelize.col()合并字段 #### 正常合并字段 ``` js await this.ctx.model.Student.findAll({ attributes: [[this.app.Sequelize.col('subject.name'), 'subjectName']], include: [ { model: this.ctx.model.Subject, as: 'subject', attributes[] } ] }) ``` 预期结果 ``` json [ { "id": "1",...

Inactive