docs: add Neon Functions adapter guide - #413
Open
mezotv wants to merge 1 commit into
Open
Conversation
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a guide for running a Carbon bot on Neon Functions, and links it in the Adapters sidebar between Cloudflare Workers and Next.js.
Why
Neon Functions run web-standard
fetchhandlers on a long-lived Node.js runtime, which is the same handler shape Carbon's fetch adapter already produces. No new adapter is needed, but the setup (declaring the function inneon.ts, local dev, and deploy) isn't obvious from the generic Fetch page, so this walks through it.Changes
website/pages/v0.16.0/adapters/fetch/neon.mdx. It covers creating the handler, declaring the function inneon.ts, running locally withneon dev, and deploying withneon deploy. It also notes that Neon reads secrets fromprocess.envdirectly, so the CloudflareglobalThisworkaround isn't required.website/tome.config.mjs.Notes
aws-us-east-2region. The page flags this in a callout.