
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
http-status-response-codes
Advanced tools
A Http status module inspired from SpringBoot http package.
const request = require('request-promise');
const HttpStatus = require('http-status-response-codes');
const response = await request(options);
const httpStatus = new HttpStatus(response);
if(httpStatus.is2xxSuccessful()){
return response;
}
else if(httpStatus.is4xxClientError()) {
throw ('Client Error')
} if(httpStatus.is5xxServerError())
throw ('Server Error')
}
}
Node.js 0.10 or higher is required.
$ npm install http-status-response-codes
const HttpStatus = require('http-status-response-codes');
const { statusCodes } = require('http-status-response-codes');
The module export a HTTPStatus class by default and also a statusCode enum. The HTTPStatus code module takes a String or Response Object as input.
const statusCode = new HttpStatus("406");
OR
const response = await request(options);
const httpStatus = new HttpStatus(response);
console.log(statusCode.getName()) // NOT_ACCEPTABLE
console.log(statusCode.getCodeValue()) // 406
console.log(statusCode.getDescription()) // 'Not Acceptable'
The statusCode enum has all the defined HTTP Statuses you might require.
const { statusCodes } = require('http-status-response-codes');
console.log(statusCodes.BAD_REQUEST) // Will give '400'
const HttpStatus = require('http-status-response-codes');
const statusCode = new HttpStatus('503');
console.log(httpStatus.is5xxServerError()) // console logs true.
You can check if the given status code is a Client Side Error.
const HttpStatus = require('http-status-response-codes');
const statusCode = new HttpStatus('406');
console.log(httpStatus.is4xxClientError()) // console logs true.
Return true if status code is 4XX or 5XX
const HttpStatus = require('http-status-response-codes');
const statusCode = new HttpStatus('404');
console.log(httpStatus.isError()) // console logs true.
const statusCode = new HttpStatus('505');
console.log(httpStatus.isError()) // console logs true.
const statusCode = new HttpStatus('204');
console.log(httpStatus.isError()) // console logs false.
const HttpStatus = require('http-status-response-codes');
const statusCode = new HttpStatus('302');
console.log(httpStatus.is3xxRedirection()) // console logs true.
const HttpStatus = require('http-status-response-codes');
const statusCode = new HttpStatus('200');
console.log(httpStatus.is2xxSuccessful()) // console logs true.
const HttpStatus = require('http-status-response-codes');
const statusCode = new HttpStatus('100');
console.log(httpStatus.is1xxInformational()) // console logs true.
FAQs
A Http status module inspired from SpringBoot http package.
We found that http-status-response-codes 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.