
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@triyanox/next-middleware
Advanced tools
The cleanest way to protect your Next.js routes with a middleware
@triyanox/next-middleware@triyanox/next-middleware is a user-friendly, type-safe package designed for route protection in your Next.js applications. It can be applied to pages, apps routes, and API routes.
You can install the package using your preferred package manager:
# pnpm
pnpm add @triyanox/next-middleware
# bun
bun add @triyanox/next-middleware
# npm
npm install @triyanox/next-middleware
# Yarn
yarn add @triyanox/next-middleware
Here are the steps to effectively use @triyanox/next-middleware for route protection:
Firstly, you need to specify the type of data that will be used for route checks. Here we use User as an example, but you can replace it with your own data type.
type Data = User; // Replace User with your own data type
Next, import the Middleware class, the RuleFunction type, and the Routes type from the package. If you wish, you can also import the routes object from @triyanox/next-routes to generate the routes object. Nonetheless, you can provide your own routes object or type as long as it fulfills the Routes type.
import Middleware, { RuleFunction, Routes } from "@triyanox/next-middleware";
import { routes } from "@/lib/link$";
To use @triyanox/next-routes for generating the routes, refer to the documentation for more information.
You will then define the rules for route protection using the RuleFunction type. For cleaner code, you can define these rules in separate files and import them into the main file. You can also define rules for specific routes using the RuleFunction type with the route path as the third type argument for added type safety.
The RuleFunction type has three type arguments:
Data: The type of data for route checks.Routes: The type of the routes object.Path (optional): The path of the route for type safety.The RuleFunction type takes an object with the following properties:
data: The data for route checks.next: A function to proceed to the next rule or route.redirect: A function to redirect to a specific route.params: An object containing the route parameters if the rule is for a specific dynamic route.path: The current path of the route.These rules can be asynchronous functions. Here's an example of defining rules:
const isLoggedIn: RuleFunction<Data, typeof routes> = ({ data, next, redirect }) => {
if (data) {
return next();
} else {
return redirect("/login");
}
};
const isAdmin: RuleFunction<Data, typeof routes> = ({ data, next, redirect }) => {
if (data.role === "ADMIN") {
return next();
} else {
return redirect("/login");
}
};
const isOwnWorkspace: RuleFunction<Data, typeof routes, '/dashboard/workspaces/[workspaceId]'> = ({
data,
next,
redirect,
params,
}) => {
if (data.workspaces.includes(params.workspaceId)) {
return next();
} else {
return redirect("/login");
}
};
Create a middleware using the Middleware class and perform the route checks. The Middleware class needs:
Routes: The type of the routes object.Data: The type of data for route checks.It also takes an object with the following properties:
fetch: An async function to fetch the data for route checks, which will be passed to the rules.rules: An object where the keys are the paths of the routes and the values are arrays of rules for the routes. The paths can be specific routes or route patterns (We support wildcard paths for the current version we plan to add regex support in the future).authPaths: An array of base paths where the rules should be applied.onError: An async function to handle errors and redirects.Here's an example of constructing the middleware:
import env from "@/env";
import { NextResponse } from "next/server";
import { isNotLoggedIn, isLoggedIn, isAdmin, isOwnWorkspace } from "@/lib/rules";
import { routes } from "@/lib/link$";
import type { Data } from "@/types";
import Middleware from "@triyanox/next-middleware";
const middleware = new Middleware<typeof routes, Data>({
fetch: async (req) => {
// Fetch and return the data for route checks
// call an API or a serverless function/db to fetch the data (note that the middleware file is not running on a node.js environment so you can't use things like prisma, mongoose, etc. directly in my case I make an API call to fetch the data)
},
rules: {
"/login": [isNotLoggedIn],
"/dashboard/*": [isLoggedIn, isAdmin],
"/dashboard/workspaces/[workspaceId]/*": [isLoggedIn, isAdmin, isOwnWorkspace],
},
authPaths: ["/login", "/dashboard"],
onError: async (req) => {
// Handle errors and redirects
const path = new URL(req.url).pathname;
if (path === "/login") {
return NextResponse.next();
}
return NextResponse.redirect(env.NEXT_PUBLIC_URL + "/login");
},
});
Finally, export the middleware and the config object for use in your Next.js app. In this example, we bind the handle method to the middleware instance and export it as the default export. However, you can create your own handler function and export it by wrapping the middleware instance in your function.
export default middleware.handle.bind(middleware);
export const config = {
matcher: ["/((?!api/|_next/|_proxy/|_static|_vercel|[\\w-]+\\.\\w+).*)"],
};
This project is licensed under the MIT License - see the LICENSE file for details.
We welcome contributions! Feel free to open an issue or submit a pull request if you have ideas or suggestions for improvement.
FAQs
The cleanest way to protect your Next.js routes with a middleware
We found that @triyanox/next-middleware demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.