Frameworks
Next.js (App Router)
Learn how to integrate Nerve API into your Next.js application.
This guide assumes you are using the Next.js App Router (Next.js 14+).
Create a providers wrapper
app/providers.tsx
Then wrap your app with the provider in your root layout:
app/layout.tsx
We separate the providers into their own file to keep client-side code isolated, which helps with better code organization and performance.
Add the EHR selection component to your login page
app/auth/login/page.tsx
Add a route for the auth redirect
app/auth/callback/page.tsx
You can customize the callback url using the callbackUrl
option
in the NerveProvider
component.
That's all!
You can start using the Nerve client in your application. Before making any requests, make sure to set your provider!
Basic Usage
Currently only a client-side API is available.
Click here to return to the getting started page.