Utilities for building better APIs with Next.js app router.
npm i next-api-utils
Next.js version | next-api-utils version |
---|---|
v15 | v2 |
v14 | v1 (no longer maintained) |
v13 | v1 (no longer maintained) |
Generated documentation for the latest version is available at next-api-utils.jonahsnider.dev.
If you try importing next-api-utils
from a client component, you will get an error since certain features are only available on the server.
There is a separate export you can use in client components, which doesn't include any of the server-only features.
import { ... } from 'next-api-utils/client';
The default export and next-api-utils/server
extend next-api-utils/client
with server-only features.