Frameworks
Next.js (Pages Router)
Learn how to integrate Nerve API into your Next.js application.
This guide assumes you are using the Next.js Pages Router.
Create a providers wrapper
pages/_app.tsx
In the Pages Router, we wrap our application with providers in the _app.tsx
file.
Add the EHR selection component to your login page
pages/auth/login.tsx
Add a route for the auth redirect
pages/auth/callback.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.