Alexis Tyler

Results 312 comments of Alexis Tyler

@TBens any chance you could review this? 😃

No worries, didn't see an issue or anything about this in the roadmap so figured I'd open an issue to track it.

Related: https://github.com/oven-sh/bun/issues/405

I've sent in an email to @tjfontaine and hopefully I get a reply soon, if not I'm just going to keep trying to get in contact with him until this...

@mcollina that only helps with getting the npm module name sorted, still doesn't fix the issue of people forking from this repo. Even with a new repo established as the...

This is the `PATCH` REST method. `PUT` replaces the whole document whereas `PATCH` just updates the field you provide. If you still need this wait for #152 to be merged...

If you want to generate a restful API from your Swagger file then you're better off using something that's built specifically for it like [this](https://github.com/swagger-api/swagger-codegen). If you're looking for the...

> To fix it, my thought was to save some FTP enable/disable status in /boot/config/vsftpd.cfg and then something in /boot/config/go that would read it but I am not convinced that...

Still seems to be an issue. The callback is never called. ```ts import segfaultHandler from 'segfault-handler'; segfaultHandler.registerHandler('/var/log/unraid-api/crash.log', (signal, address, stack) => JSON.stringify({ signal, address, stack })); ```

As the application is crashed at that point I don't think `stdout` is still hooked up so `console.log` won't work. I found if you use `writeFileSync` you can write before...