0.0.7 • Published 1 year ago

wrangler-pages-functions-dev v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

wrangler-pages-functions-dev

wrangler-pages-functions-dev is a Vite plugin that can be used to handle Cloudflare Pages Functions during local development.

It can be useful for example when working on a single page application that makes use of Pages Functions.

Usage

Install the package as a dev dependency alongside wrangler:

npm i -D wrangler-pages-functions-dev wrangler

To use the plugin with vite dev simply update your vite config file to include the plugin and to specify which routes it should handle, for example:

export default defineConfig({
  plugins: [
+    wranglerPagesFunctionsDev({
+      matchRoutes: /api/,
+    }),
    // ...
  ],
})

You can preview or deploy you application with wrangler pages in the same exact way as you would without this plugin (this plugin only effects vite dev everything else works exactly the same as it would otherwise).

Examples

  • React SPA hello-world example\ Very minimalistic example that shows how this plugin can be used to locally developer a react SPA applications alongside Pages Functions.
0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago