Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
next-api-middleware
Advanced tools
Next.js API routes are a ridiculously fun and simple way to add backend functionality to a React app. However, when it comes time to add middleware, there is no easy way to implement it.
The official Next.js docs recommend writing functions inside your API route handler :thumbsdown:. This is a huge step backward compared to the clean APIs provided by Express.js or Koa.js.
This library attempts to provide minimal, clean, composable middleware patterns that are both productive and pleasant to use. :tada:
import { use } from "next-api-middleware";
import cors from "cors";
// Create a wrapper function that executes middleware
// before and after an API route request
const withMiddleware = use(
async (req, res, next) => {
console.log("Do work before the request");
await next();
console.log("Clean up");
},
async (req, res, next) => {
console.log("Do more work");
await next();
console.log("Clean up more");
},
cors(), // <---- Invoke Express/Connect middleware like any other middleware
async (req, res, next) => {
console.log("Store user in request");
req.locals = {
user: {
name: "Alice",
email: "alice@example.com",
},
};
await next();
}
);
// Create a normal Next.js API route handler
const apiRouteHandler = async (req, res) => {
const { name } = req.locals.user;
res.status(200);
res.send(`Hello, ${name}!`);
};
// Export the route handler wrapped inside the middleware function
export default withMiddleware(apiRouteHandler);
/**
* Console output:
*
* Do work before the request
* Do more work
* cors
* Store user in request
* Clean up more
* Clean up
*/
import type { NextMiddleware } from "next-api-middleware";
// Middleware that does work before a request
export const addRequestUUID: NextMiddleware = async (req, res, next) => {
// Set a custom header
res.setHeader("X-Response-ID", uuid());
// Execute the remaining middleware
await next();
};
// Middleware that does work before *and* after a request
export const addRequestTiming: NextMiddleware = async (req, res, next) => {
// Set a custom header before other middleware and the route handler
res.setHeader("X-Timing-Start", new Date().getTime());
// Execute the remaining middleware
await next();
// Set a custom header
res.setHeader("X-Timing-End", new Date().getTime());
};
// Middleware that catches errors that occur in remaining middleware
// and the request
export const logErrorsWithACME: NextMiddleware = async (req, res, next) => {
try {
// Catch any errors that are thrown in remaining
// middleware and the API route handler
await next();
} catch (error) {
Acme.captureException(error);
res.status(500);
res.json({ error: error.message });
}
};
import { use } from "next-api-middleware";
import {
addRequestTiming,
logErrorsWithACME,
addRequestUUID,
} from "../helpers";
import { connectDatabase, loadUsers } from "../users";
// Create a middleware wrapper to be used on API routes
// that need authentication
export const withAuthMiddleware = use(
addRequestTiming,
logErrorsWithACME,
addRequestUUID,
connectDatabase,
loadUsers
);
// Create a middleware wrapper to be used on API routes
// that are only used by guests
export const withGuestMiddleware = use(
isProduction ? [addRequestTiming, logErrorsWithACME] : [],
addRequestUUID
);
// Create a middleware wrapper using arrays of middleware
// functions; these are flattened and executed in the order
// in which they are provided
export const withXYZMiddleware = use(
[addRequestUUID, connectDatabase, loadUsers],
[addRequestTiming, logErrorsWithACME]
);
The use
method creates a higher order function that applies middleware to an API route. use
accepts a list of values that evaluate to middleware functions. It also accepts arrays of middleware functions, which are flattened at runtime (order is preserved).
Another available method for grouping middleware is label
. Here's how it works:
import { label } from "next-api-middleware";
import {
addRequestTiming,
logErrorsWithACME,
addRequestUUID,
} from "../helpers";
// Create a middleware wrapper that imports middleware and
// assigns friendly labels
const withMiddleware = label({
timing: addRequestTiming,
logErrors: logErrorsWithACME,
uuids: addRequestUUID,
all: [addRequestTiming, logErrorsWithACME, addRequestUUID],
});
const apiRouteHandler = async (req, res) => {
const { name } = req.locals.user;
res.status(200);
res.send(`Hello, ${name}!`);
};
// Only invoke `addRequestTiming` and `logErrorsWithACME`, using their
// friendly labels
export default withMiddleware("timing", "logErrors")(apiRouteHandler);
Using label
creates a middleware group that, by default, doesn't invoke any middleware. Instead, it allows choosing specific middleware by supplying labels as arguments in the API route.
Since use
accepts values that evaluate to middleware functions, this provides the opportunity to create custom middleware factories.
Here's an example of a factory that generates a middleware function to only allow requests with a given HTTP method:
import { use, NextMiddleware } from "next-api-middleware";
const httpMethod = (
allowedHttpMethod: "GET" | "POST" | "PATCH"
): NextMiddleware => {
return async function (req, res, next) {
if (req.method === allowedHttpMethod || req.method == "OPTIONS") {
await next();
} else {
res.status(404);
res.end();
}
};
};
export const withAuthMiddleware = use(
httpMethod("POST"),
addRequestTiming,
logErrorsWithACME,
addRequestUUID
);
next-api-middleware
supports two middleware signatures, NextMiddleware
and ExpressMiddleware
.
NextMiddleware
(preferred)NextMiddleware
is inspired by the asyncronous middleware style popularized by Koa.js. Prefer this style when writing your own middleware.
interface NextMiddleware {
(
req: NextApiRequest,
res: NextApiResponse,
next: () => Promise<void>
): Promise<void>;
}
ExpressMiddleware
ExpressMiddleware
roughly matches the signature used by Express/Connect style middleware. This type can be used when importing third-party libraries such as cors
.
interface ExpressMiddleware<
Request = IncomingMessage,
Response = ServerResponse
> {
(
req: Request,
res: Response,
next: (error?: any) => void | Promise<void>
): void;
}
An example using cors
:
import { use } from "next-api-middleware";
import cors from "cors";
export const withMiddleware = use(
// Asserting express/connect middleware as an `ExpressMiddleware` interface
// can resolve type conflicts by libraries that provide their own types.
cors() as ExpressMiddleware
);
FAQs
Middleware solution for Next.js API routes
The npm package next-api-middleware receives a total of 4,710 weekly downloads. As such, next-api-middleware popularity was classified as popular.
We found that next-api-middleware demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.