JSPM

  • Created
  • Published
  • Downloads 179466
  • Score
    100M100P100Q183737F
  • License MIT

Cloudflare builder for next apps

Package Exports

    Readme

    OpenNext for Cloudflare

    Deploy Next.js apps to Cloudflare!

    OpenNext for Cloudflare is a Cloudflare specific adapter that enables deployment of Next.js applications to Cloudflare.

    Get started

    To get started with the adapter visit the official get started documentation.

    Local development

    • you can use the regular next CLI to start the Next.js dev server:

    Local preview

    Run the following commands to preview the production build of your application locally:

    • build the app and adapt it for Cloudflare

      npx opennextjs-cloudflare
      # or
      pnpm opennextjs-cloudflare
      # or
      yarn opennextjs-cloudflare
      # or
      bun opennextjs-cloudflare
    • Preview the app in Wrangler

      npx wrangler dev
      # or
      pnpm wrangler dev
      # or
      yarn wrangler dev
      # or
      bun wrangler dev

    Deploy your app

    Deploy your application to production with the following:

    • build the app and adapt it for Cloudflare

      npx opennextjs-cloudflare && npx wrangler deploy
      # or
      pnpm opennextjs-cloudflare && pnpm wrangler deploy
      # or
      yarn opennextjs-cloudflare && yarn wrangler deploy
      # or
      bun opennextjs-cloudflare && bun wrangler deploy