Lightweight and Portable Next.js API builder


Keywords
next, api, restful, middleware, error-handling, express, serverless, nextjs, typescript
License
MIT
Install
npm install next-api-handler@0.4.10

Documentation

next-api-handler


install size CircleCI codecov next-api-handler Known Vulnerabilities

Lightweight and Portable Next.js API builder

Building RESTful API routes in Next.js with middleware support, predictable error handling and type-safe interfaces for client-server communication.

Visit https://next-api-handler.vercel.app to view the full documentation.

Getting Started

TL;DR

npm install next-api-handler # or yarn, pnpm
// in /pages/api/users.ts
import { RouterBuilder, ForbiddenException } from 'next-api-handler';
import { createUser, type User } from '@/services/user';

const router = new RouterBuilder();

router
  .get<string>(() => 'Hello World!')
  .post<User>(async (req) => createUser(req.body))
  .delete(() => {
    throw new ForbiddenException();
  });

export default router.build();

License

MIT