docs: add fastify integration guide to installation(#2516)

This commit is contained in:
Anson Kao
2025-05-02 17:19:53 -04:00
committed by GitHub
parent 58e1451f53
commit 2a246aeb87

View File

@@ -332,7 +332,7 @@ Better Auth supports any backend framework with standard Request and Response ob
console.log(`Better Auth app listening on port ${port}`);
});
```
This also works for any other node server framework like express, fastify, hapi, etc. Note that CommonJS (cjs) isn't supported.
This will also work for any other node server framework like express, fastify, hapi, etc., but may require some modifications. See [fastify guide](/docs/integrations/fastify). Note that CommonJS (cjs) isn't supported.
</Tab>
<Tab value="astro">
```ts title="/pages/api/auth/[...all].ts"