http-status-code-node

1.0.0 • Public • Published

http-status-code-node

Get Explicit Command Over the Http Status Code sent With Your Response

Installation

npm install http-status

Usage

 	var htt =    require('http-status-code-node');
 	
	router.get('/ok', function(req, res, next) {
		htt.ok(res,{ "title": '200 OK' });
	});
	router.get('/notModified', function(req, res, next) {
		htt.not_modified(res,{ "title": '304 Not Modified' });
	});
	router.get('/badRequest', function(req, res, next) {
		htt.bad_request(res,{ "title": '400 bad Request' });
	});
	router.get('/forbidden', function(req, res, next) {
		htt.forbidden(res,{ "title": '403 Forbidden' });
	});
	router.get('/notFound', function(req, res, next) {
		htt.not_found(res,{ "title": '404 Not Found' });
	});
	router.get('/notAcceptable', function(req, res, next) {
		htt.not_acceptable(res,{ "title": '406 Not Acceptable' });
	});
	router.get('/gone', function(req, res, next) {
		htt.gone(res,{ "title": '410 GONE' });
	});
	router.get('/enhanceYourCalm', function(req, res, next) {
		htt.enhance_your_calm(res,{ "title": '420 Enhance Your Calm' });
	});
	router.get('/unprocessableEntity', function(req, res, next) {
		htt.unprocessable_entity(res,{ "title": '422 Unprocessable Entity ' });
	});
	router.get('/internalServerError', function(req, res, next) {
		htt.internal_server_error(res,{ "title": '500 Internal Server Error' });
	});
	router.get('/badGatewayApi', function(req, res, next) {
		htt.bad_gateway_api(res,{ "title": '502 Bad Gateway Api' });
	});

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i http-status-code-node

    Weekly Downloads

    2

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • mauvejedi