
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.
@mkvlrn/app-error
Advanced tools
Map your app's error codes to HTTP statuses. Define once, use everywhere, let TypeScript yell at you if you typo a code.
pnpm add @mkvlrn/app-error
| Export | What it does |
|---|---|
AppError<TCode> | Error subclass with code, statusCode, status, and a serialize() method |
defineErrors(mapping) | Takes a code → status mapping, returns throw, create, and is helpers |
InferAppError<T> | Extracts a qualified AppError type from a defineErrors result |
import { AppError, defineErrors } from "@mkvlrn/app-error";
const errors = defineErrors({
USER_NOT_FOUND: "NOT_FOUND", // 404
INVALID_INPUT: "BAD_REQUEST", // 400
UNAUTHORIZED_ACCESS: "UNAUTHORIZED", // 401
});
Keys are your codes, values are status names from http-status-codes. Both sides autocomplete.
// throws — return type is never
errors.throw("USER_NOT_FOUND", "no user with that id");
// creates without throwing
const error = errors.create("INVALID_INPUT", "email is required");
error.code; // "INVALID_INPUT"
error.statusCode; // 400
error.status; // "Bad Request"
try {
JSON.parse(rawBody);
} catch (cause) {
errors.throw("INVALID_INPUT", "malformed json", cause);
}
if (err instanceof AppError) {
res.status(err.statusCode).json(err.serialize());
// { code: "INVALID_INPUT", message: "email is required", details: undefined }
}
errors.is() narrows an unknown value to your qualified AppError type — useful in catch blocks and error filters:
if (errors.is(err)) {
// err is AppError<"USER_NOT_FOUND" | "INVALID_INPUT" | "UNAUTHORIZED_ACCESS">
res.status(err.statusCode).json(err.serialize());
}
Instead of writing AppError<"USER_NOT_FOUND" | "INVALID_INPUT" | ...> by hand, use InferAppError to extract it from your definition:
type MyAppError = InferAppError<typeof errors>;
// → AppError<"USER_NOT_FOUND" | "INVALID_INPUT" | "UNAUTHORIZED_ACCESS">
function handleError(err: MyAppError) {
// err.code is narrowed to the union — no generic to qualify manually
}
throw new AppError("CUSTOM_CODE", 503, "service unavailable");
MIT
FAQs
Map app error codes to HTTP statuses
We found that @mkvlrn/app-error 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
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.