Michael Jackson
Michael Jackson
When there is an error in one of my callbacks, I get the following error from milo's `fail` handler: ``` TypeError: this.memory.buffer.subarray is not a function at Object.fail (/Users/michael/Projects/remix-the-web/node_modules/.pnpm/@[email protected]/node_modules/@perseveranza-pets/milo/index.js:40:37) at...
The `remix` package is a rollup of all the `@remix-run/*` packages. It uses [package.json "subpath" `exports`](https://nodejs.org/api/packages.html#subpath-exports) to expose different pieces of functionality in Remix. There should be very little implementation...
We should support Cloudflare R2 as a backend in the `file-storage` package. We can probably support this using [R2's S3 compatibility API](https://developers.cloudflare.com/r2/api/s3/api/). It looks like it has all the features...
The assets middleware takes a directory of files that are considered public assets for the frontend, uses them all as entry points in an [esbuild context](https://esbuild.github.io/api/#build). It runs the build...
The `file-storage` package should support AWS S3 via the [aws4fetch](https://github.com/mhart/aws4fetch) library. We are willing to break our "no deps" rule for this one because we don't want to build a...