Prototype: createServer API for local Worker sessions#12785
Draft
edmundhung wants to merge 1 commit intomainfrom
Draft
Prototype: createServer API for local Worker sessions#12785edmundhung wants to merge 1 commit intomainfrom
edmundhung wants to merge 1 commit intomainfrom
Conversation
|
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
wrangler
commit: |
1bf420d to
806e9f5
Compare
30e3189 to
2b07b7a
Compare
2b07b7a to
9ceb824
Compare
unstable_startWorker poc
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.
Fixes n/a.
Here is a prototype
createServer()API for starting local Worker sessions from Node.js.The goal is to explore a stable replacement path for
unstable_startWorker()andunstable_dev()that:The prototype keeps the implementation small by wrapping the existing
DevEnvruntime used bywrangler dev/wrangler pages dev, while exposing a narrower API shape.listen()to start the server,close()to dispose the resoruces,getWorker(name?)to interact with a dedicate worker,For wrangler users, they will need to create a worker server by specifying the
configPath. This will start a dev server that builds the project right away:For vite users, we will rely on the deploy config / redirected config instead and skip the build.
This also includes a
create-serverfixture demonstrating the intended testing workflow for both Wrangler and Vite projects, including outbound request mocking via MSW.A picture of a cute animal (not mandatory, but encouraged)