Slim Hmidi
Slim Hmidi
Uncaught SyntaxError: The requested module './Reflect.ts' does not provide an export named 'Reflect'
I use deno v1.23.4 and [inject module](https://github.com/cmd-johnson/deno-dependency-injector). While I run the server I got this error: ``` error: Uncaught SyntaxError: The requested module './Reflect.ts' does not provide an export named...
Hi, I'm trying to write tests for my projects and I read a lot of your articles and I find many interesting ones such as: [Stop mocking fetch](https://kentcdodds.com/blog/stop-mocking-fetch) where you...
I create a user model: ```ts class UserModel extends Model { static table = 'users' static timestamps = true static fields = { id: { primaryKey: true, autoIncrement: true}, firstName:...
I'm using the `delete` method but when I call it returns an empty array. Is not convenient to return an object with a number of deleted elements? ``` async removeItem(item:...
Hi, I took a look at the documentation and I don't find any section or an example about creating migrations or seeds. Is it something that is not related to...
I don't know if it is the suitable place to mention this feature but I actually using `normalize` in my project and I'm using a [TextField](https://material-ui.com/demos/text-fields/) of type `number`. The...
**Describe the bug** I run `denon start` and I got this error: ``` Uncaught (in promise) NotFound: No such file or directory (os error 2) return Deno.run(options); ^ at Object.opSync...
Confirm by changing [ ] to [x] below: - [X] I've gone though [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/welcome.html) and [API reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/) - [X] I've checked [AWS Forums](https://forums.aws.amazon.com) and [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) for answers **Describe the...
Hi, Thank you for creating this great library. I want to suggest the creation of migration and seed files like `knex`. What do you think about adding some postgresql functions...
Hello, Congratulations for this great project. I think it can be better to use typescript and redux-toolkit if you want in order to reduce the declaration of actions and reducers...