
Security News
npm Tooling Bug Incorrectly Marks One-Character Packages as Security Holders
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.
express-rest-decorators
Advanced tools
Decorator-based REST controllers for Express v5 (modernized routing-controllers successor)
Decorator-based REST controllers for Express v5 — modernized routing-controllers successor.
Express v5 finally landed with native async error propagation — promise rejections in route handlers now flow to error middleware automatically, no try/catch boilerplate, no Promise.resolve().catch(next) shims. This library is built on top of that single change. It targets Express 5 only; there is no v4 fallback.
The mental model is routing-controllers (legacy TypeScript decorators + reflect-metadata) — class-based controllers, decorator-driven routing, dependency-injection hook. If you've used routing-controllers v0.10/v0.11, this will feel familiar. The big break is method-level input declaration: instead of @Param('id') id: string argument decorators, schemas live on the method decorator itself, and the handler receives one typed input object.
Validation is validator-agnostic via Standard Schema. Zod, Valibot, ArkType — anything that implements StandardSchemaV1 works as the schema for params / query / body / headers / cookies / session. No adapter package required. See the Migration Guide for a full comparison vs routing-controllers v0.11.
pnpm add express-rest-decorators express reflect-metadata zod
# or: npm install / yarn add — same package list
express and reflect-metadata are required at runtime. The validator is your choice — zod, valibot, or arktype all work; pick one.
import 'reflect-metadata';
import express from 'express';
import { z } from 'zod';
import { JsonController, Get, Post, useExpressControllers } from 'express-rest-decorators';
const UserSchema = z.object({ name: z.string(), email: z.string().email() });
@JsonController('/users')
class UserController {
@Get('/:id', { params: z.object({ id: z.coerce.number() }) })
getOne({ params }: { params: { id: number } }) {
return { id: params.id, name: 'Ada' };
}
@Post('/', { body: UserSchema })
create({ body }: { body: z.infer<typeof UserSchema> }) {
return { id: 1, ...body };
}
}
const app = express();
app.use(express.json());
useExpressControllers(app, { controllers: [UserController] });
app.listen(3000, () => console.log('http://localhost:3000'));
Required tsconfig.json compiler options:
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "ES2022",
"useDefineForClassFields": false
}
}
import 'reflect-metadata' MUST appear once at the top of your application's entry file, before any controller class is loaded. The library's bootstrap throws an actionable error if Reflect.getMetadata is unavailable.
Any Standard-Schema-implementing library works as the input schema. The same @Post('/', { body: schema }) route accepts whichever you prefer — there is no adapter import.
import { z } from 'zod';
const Body = z.object({ name: z.string() });
@Post('/', { body: Body })
create({ body }: { body: z.infer<typeof Body> }) {
return body;
}
import * as v from 'valibot';
const Body = v.object({ name: v.string() });
@Post('/', { body: Body })
create({ body }: { body: v.InferOutput<typeof Body> }) {
return body;
}
import { type } from 'arktype';
const Body = type({ name: 'string' });
@Post('/', { body: Body })
create({ body }: { body: typeof Body.infer }) {
return body;
}
Why three? Any library implementing the Standard Schema v1 spec works without adapter code. Pick the one that fits your bundle-size / DX preferences.
The library does not bundle a DI container. It exposes one hook — useContainer — that accepts anything with a .get(token) shape:
import { Container } from 'typedi';
import { useContainer } from 'express-rest-decorators';
useContainer({ get: (token) => Container.get(token) });
The same recipe wires tsyringe, Awilix, InversifyJS, or any container with a .get(token) shape. There is no express-rest-decorators-typedi package — the single-package rule means container integrations are recipes, not packages. Without useContainer, controllers are instantiated with their zero-arg constructor and cached in a WeakMap.
params, query, body, headers, cookies, session, and files.@UseBefore, @UseAfter, @Middleware, @Interceptor, @UseInterceptor for class- or function-shaped middleware and response interceptors.@Authorized(roles?) with global authorizationChecker and currentUserChecker boot hooks.UploadedFile(...) and UploadedFiles(...) slot markers in the method's files slot. Multer is an optional peer; limits and fileFilter are mandatory by design.@Render, @Redirect, @Location, @Header, @ContentType, @HttpCode, @OnNull, @OnUndefined.getRequestContext() returns { req, res, requestId } from anywhere in the call chain, powered by AsyncLocalStorage (works across await boundaries).printRoutes: true boot option logs a fixed-format METHOD / PATH / CONTROLLER.METHOD table after mount. Dev-time only.controllers: ['src/controllers/**/*.ts'] expands via tinyglobby (optional peer); explicit class arrays are recommended for production.| Option | Type | Description |
|---|---|---|
controllers | Array<Class | string> | Controller classes or glob patterns. Required. |
routePrefix | string | Prepended to every controller's base path. |
middlewares | Array<Class | Function> | Global middleware applied before all routes. |
interceptors | Array<Class> | Global response interceptors. |
cors | boolean | CorsOptionsLike | Mount cors() middleware (optional peer). |
defaultErrorHandler | boolean (default true) | Mount the library's error middleware. |
validation | unknown | Reserved for future validator overrides. |
authorizationChecker | (action, roles?) => boolean | Promise<boolean> | Used by @Authorized. |
currentUserChecker | (action) => unknown | Resolves the current user for the request. |
printRoutes | boolean | Log the route table at boot (dev only). |
onLogError | (err) => void | Override console.error for headers-already-sent errors. |
Full API reference (TypeDoc): https://nirajk77777.github.io/express-rest-decorators/ — published to GitHub Pages on first release (link 404s until Plan 05-07 ships v1.0.0-rc.1).
| Package | Range |
|---|---|
| TypeScript | >=5.8 |
| Node.js | >=20.0.0 (Node 22 LTS recommended) |
| Express | ^5.1.0 (peer) |
| reflect-metadata | ^0.2.2 |
| Standard Schema | ^1.0.0 (@standard-schema/spec) |
| Zod | ^4.0.0 (also ^3.25.0) |
| Valibot | ^1.0.0 |
| ArkType | ^2.0.0 |
Throwing an HttpError (or any subclass) from a handler short-circuits to the library's error middleware, which serializes it to a JSON response with the matching status code:
import { JsonController, Get, NotFoundError } from 'express-rest-decorators';
@JsonController('/users')
class UserController {
@Get('/:id')
getOne({ params }: { params: { id: string } }) {
const user = lookup(params.id);
if (!user) throw new NotFoundError(`User ${params.id} not found`);
return user;
}
}
Exported subclasses cover the common cases: BadRequestError (400), UnauthorizedError (401), ForbiddenError (403), NotFoundError (404), MethodNotAllowedError (405), ConflictError (409), InternalServerError (500). Validation failures from any Standard Schema implementation are converted to BadRequestError automatically.
Express v5 propagates promise rejections from async handlers to error middleware natively — no per-handler try/catch, no Promise.resolve().catch(next) wrapper. The library installs one error middleware (when defaultErrorHandler is true, the default) that:
HttpError and serializes the matching status code + message.BadRequestError.500 Internal Server Error for unrecognized throwables.console.error (override with onLogError) when an error arrives after res.headersSent.Set defaultErrorHandler: false to opt out and install your own.
Coming from routing-controllers@0.11 (or earlier)? See MIGRATION.md. The lead chapter covers the single biggest change — parameter decorators (@Param, @Body, @QueryParam, ...) replaced by method-level input declaration. The remaining chapters are mostly mechanical decorator renames + a single Breaking Changes table.
MIT — see LICENSE.
See CONTRIBUTING.md for the dev loop, scripts, and release flow. Bug reports and feature requests welcome at https://github.com/nirajk77777/express-rest-decorators/issues.
FAQs
Decorator-based REST controllers for Express v5 (modernized routing-controllers successor)
We found that express-rest-decorators 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
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.