Ashcon Partovi

Results 382 comments of Ashcon Partovi
trafficstars

This crash no longer occurs as of Bun v1.0.26.

Support for `overrides` was added in [Bun v1.0.6](https://bun.sh/blog/bun-v1.0.6#overrides-resolutions-support), which you can upgrade to by running `bun upgrade`. If you need support for _nested_ overrides, follow #6608 for updates.

Thanks for working on this. Closing this out since we have a documentation [website](https://bun.sh/docs) now.

You'll need to add `llvm-bindings` to your package.json, like so: ```json { "dependencies": { "llvm-bindings": "^0.4.2" }, "trustedDependencies": [ "llvm-bindings" ] } ``` Then run `bun install`, and the code...

This was fixed, tested as of Bun v1.0.7.

Thanks for working on this! Going to close this out now that we have a [documentation](https://bun.sh/docs) website.

Yes, this has been implemented.

@robobun ```js const Koa = require('koa'); const app = new Koa(); app.use(async ctx => { ctx.body = 'Hello World'; }); app.listen(3000); const response = await fetch("http://localhost:3000"); console.log(response); ```

[Bun v0.3.0](https://bun.sh/blog/bun-v0.3.0) added support for `process.stderr` and related APIs, which should have resolved the root issue here. However, it's possible that `koa` or `sequlize` may have other errors. If that's...

In Bun v0.5.0, we implemented a workaround for when `/proc` is not mounted. https://github.com/oven-sh/bun/commit/a345efd270bcd19672b13b363d287354113b7aba