0.0.1 • Published 9 years ago

status-codes v0.0.1

Weekly downloads
87
License
MIT
Repository
github
Last release
9 years ago

status-codes

NPM Version NPM Downloads

Small module to return all known HTTP status with a name and brief description.

Installation

$ npm install status-codes --save

Using

All codes from this Wiki HTTP Status Codes

    
    var statusCodes = require('status-codes');

	statusCodes[404];
		
	/** 
	
	Returns:
	
	{
		"status": 404,
		"name": "Not Found",
		"message": "The server has not found anything matching the Request-URI."
	}
	
	**/
	
	// OR use a get method that has a fallback to a code 400 if it doesn't find a valid code
	
	statusCodes.get(536727);
	
	/** 
	
	Returns:
	
	{
		"status": 400,
		"name": "Bad Request",
		"message": "The server cannot or will not process the request."
	}
	
	**/

Constants

Can retrive HTTP status by name too:

	statusCodes.NOT_FOUND;
		
	/** 
	
	Returns:
	
	{
		"status": 404,
		"name": "Not Found",
		"message": "The server has not found anything matching the Request-URI."
	}
	
	**/