Skip to content
  • Integrations
  • Third-party tools

Kinde and edge worker services

Kinde works with edge worker services and providers. We have tested the following:

You will need to follow the edge worker service instructions linked above, to get things running. Here’s an example of how we set up Cloudflare Workers.

Example Cloudflare Workers integration

Link to this section
  1. Set up a Cloudflare account.

  2. Install Wrangler. This is Cloudflare’s CLI.

    Terminal window
    brew install wrangler
  3. Run the Wrangler login to authenticate into your Cloudflare account:

    Terminal window
    wrangler login
  4. Create a repository to install dependencies using the below command. During this process, answer any questions best suited to your app:

    Terminal window
    wrangler init
  5. Combine the folder created for Cloudflare + kinde sdk/starter kit.

    1. Sort out any conflicts in the code (including your package.json / package-lock.json files), such as conflicting scripts, commands, dependencies, etc.
    2. Merge into the one file.
  6. Install Kinde dependencies if required. Here’s an example for React:

    Terminal window
    npm install @kinde-oss/kinde-auth-react
  7. Deploy your project. We suggest you deploy to your local environment for testing.

    Terminal window
    npm run pages\:deploy

    You’ll get a link to see the changes.