Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@20i/exceptions
Advanced tools
Provides standard exceptions to throw. We should add to this simple library when we wish to add more.
Examples:
import * as Exception from "@20i/exceptions"
throw Exception.BadRequest("This was a bad request")
// throws { name: "badRequest", code: 400, message: "This was a bad request" }
throw Exception.Unauthorized("You must be logged in to do this")
// throws { name: "unauthorized", code: 401, message: "You must be logged in to do this" }
throw Exception.Forbidden("You do not have permission")
// throws { name: "forbidden", code: 403, message: "You do not have permission" }
throw Exception.NotFound("The record was not found")
// throws { name: "notFound", code: 404, "The record was not found" }
throw Exception.InternalError("Unexpected error")
// throws { name: "internalError", code: 500, "Unexpected error" }
import * as Exception from "@20i/exceptions"
const exceptions: Exception.IException = {
name: "multipleErrors",
code: 400,
message: [
Exception.BadRequest("This was a bad request"),
Exception.Unauthorized("You must be logged in to do this"),
Exception.Forbidden("You do not have permission"),
Exception.NotFound("The record was not found"),
Exception.InternalError("Unexpected error")
]
}
// reading the text from exceptions
console.log(Exception.GetErrorMessage(exceptions))
// [
// "This was a bad request",
// "You must be logged in to do this",
// "You do not have permission",
// "The record was not found",
// "Unexpected error"
// ]
import * as Exception from "@20i/exceptions"
import axios, { AxiosResponse } from "axios"
const axiosCall = () => {
try {
const response = await axios.get("http://your-url-here.com")
return response.data
} catch (e) {
const res: AxiosResponse = e.response.data
if (Exception.isException(res)) {
// print what the message(s)
Exception.GetErrorMessage(res)
}
throw res
}
}
FAQs
Standard exceptions to throw
The npm package @20i/exceptions receives a total of 0 weekly downloads. As such, @20i/exceptions popularity was classified as not popular.
We found that @20i/exceptions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.