Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add reference to Fastly's runtime #5370

Merged
merged 9 commits into from
Feb 24, 2023
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@
- gyx1000
- hadizz
- hardingmatt
- harmony7
- helderburato
- HenryVogt
- hicksy
Expand Down
5 changes: 4 additions & 1 deletion docs/other-api/adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: 2

## Official Adapters

Idiomatic Remix apps can generally be deployed anywhere because Remix adapt's the server's request/response to the [Web Fetch API][web-fetch-api]. It does this through adapters. We maintain a few adapters:
Idiomatic Remix apps can generally be deployed anywhere because Remix adapts the server's request/response to the [Web Fetch API][web-fetch-api]. It does this through adapters. We maintain a few adapters:

- `@remix-run/architect`
- `@remix-run/cloudflare-pages`
Expand All @@ -26,6 +26,7 @@ Each adapter has the same API. In the future we may have helpers specific to the

## Community Adapters

- [`@fastly/remix-server-adapter`][fastly-remix-server-adapter] - For [Fastly Compute@Edge][fastly-compute-at-edge].
- [`@mcansh/remix-fastify`][remix-fastify] - For [Fastify][fastify].
- [`@mcansh/remix-raw-http`][remix-raw-http] - For a good ol barebones Node server.
- [`remix-google-cloud-functions`][remix-google-cloud-functions] - For [Google Cloud][google-cloud-functions] and [Firebase][firebase-functions] functions.
Expand Down Expand Up @@ -179,6 +180,8 @@ addEventListener("fetch", (event) => {
```

[web-fetch-api]: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
[fastly-remix-server-adapter]: https://github.com/fastly/remix-compute-js/tree/main/packages/remix-server-adapter
[fastly-compute-at-edge]: https://developer.fastly.com/learning/compute/
[remix-google-cloud-functions]: https://github.com/penx/remix-google-cloud-functions
[google-cloud-functions]: https://cloud.google.com/functions
[firebase-functions]: https://firebase.google.com/docs/functions
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/stacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The [token just needs `repo` access][repo access token].

#### Dependency versions

If you set the any dependencies in package.json to `*`, the Remix CLI will change it to a semver caret of the latest released version:
If you set any dependencies in package.json to `*`, the Remix CLI will change it to a semver caret of the latest released version:

```diff
- "remix": "*",
Expand Down