sm2017

Results 72 issues of sm2017

There are many old version dependencies in egg ecosystem, Please update all dependencies # In a fresh egg ``` yarn install v1.22.10 info No lockfile found. [1/5] Validating package.json... [2/5]...

Inactive

According to https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin#Examples > Limiting the possible Access-Control-Allow-Origin values to a set of allowed origins **requires code on the server side to check the value of the Origin request header,...

PR is welcome
Inactive

Newer versions of WebRTC has `WebRtcAudioUtils` class which you can use for WebRTC based Acoustic echo cancellation (AEC). ```java WebRtcAudioUtils.setWebRtcBasedAcousticEchoCanceler(true); ``` @cloudwebrtc Is there similar option on `flutter-webrtc` ?

Why there is a white space bottom of video? In the following image I set a green border to video and a red border to `react-html5-camera-photo` div ![image](https://user-images.githubusercontent.com/19644997/91028915-5d29a980-e613-11ea-8060-cf2480191b89.png) In both...

## Bug report I would like to integrate formik and [react-dropzone](https://react-dropzone.js.org/). in this library we have a `onDrop` callback with `acceptedFiles` and `fileRejections` properties. So it make sense to call...

Type: Bug

I am using https://www.npmjs.com/package/ws , I want to use eggjs as external-http-server https://www.npmjs.com/package/ws#external-https-server 1- Is `app.js` file good choice to create ws server? 2- How can I correctly config clustering?

Inactive

Is the following steps enough to Dockerizing egg.js application? #### Removing `--daemon` in the start script in the `package.json` ```json "scripts": { "start": "egg-scripts start --title=egg-server-app", }, ``` #### Using...

Inactive

In [documentation ](https://eggjs.org/en/core/i18n.html#use-in-view) we have ```html {{ __('Email') }}: {{ user.email }} {{ __('Welcome back, %s!', user.name) }} {{ __('Hello {0}! My name is {1}.', ['foo', 'bar']) }} ``` I...

plugin: egg-i18n
plugin: egg-view-nunjucks
Question
Inactive

## What are you doing? ```js module.exports = { up: (queryInterface, Sequelize) => { return queryInterface.addIndex({ tableName: 'user', schema: 'core', }, [ 'username', ]); }, down: (queryInterface, Sequelize) => {...

type: bug
dialect: postgres

How can I increase timeout to avoid `ETIMEDOUT`?