Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Exposes HTTP error codes as Error constructors.
npm install http-error
var HttpError = require("http-error");
// in your app:
app.get("/:project", function(req, res, next){
db.loadProject(req.params.project, function(err, project){
if(err) return next(new HttpError.InternalServerError("Something went wrong"));
if(!project) return next(new HttpError.notFound("This project does not exist"));
res.json(project.toObject());
});
});
// in your error handler:
app.use(function(err, req, res, next){
res.status(err.code).json({ error: err.message });
});
This module implements the following error constructors:
Code | Function |
---|---|
400 | BadRequest |
401 | Unauthorized |
402 | PaymentRequired |
403 | Forbidden |
404 | NotFound |
405 | MethodNotAllowed |
406 | NotAcceptable |
407 | ProxyAuthenticationRequired |
408 | RequestTimeout |
409 | Conflict |
410 | Gone |
411 | LengthRequired |
412 | PreconditionFailed |
413 | RequestEntityTooLarge |
414 | RequestURITooLong |
415 | UnsupportedMediaType |
416 | RequestedRangeNotSatisfiable |
417 | ExpectationFailed |
420 | EnhanceYourCalm |
422 | UnprocessableEntity |
423 | Locked |
424 | FailedDependency |
425 | UnorderedCollection |
426 | UpgradeRequired |
428 | PreconditionRequired |
429 | TooManyRequests |
431 | RequestHeaderFieldsTooLarge |
444 | NoResponse |
449 | RetryWith |
450 | BlockedByWindowsParentalControls |
499 | ClientClosedRequest |
500 | InternalServerError |
501 | NotImplemented |
502 | BadGateway |
503 | ServiceUnavailable |
504 | GatewayTimeout |
505 | HTTPVersionNotSupported |
506 | VariantAlsoNegotiates |
507 | InsufficientStorage |
508 | LoopDetected |
509 | BandwidthLimitExceeded |
510 | NotExtended |
511 | NetworkAuthenticationRequired |
FAQs
Expose HTTP error codes as Error objects
The npm package http-error receives a total of 834 weekly downloads. As such, http-error popularity was classified as not popular.
We found that http-error 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.