status-codes

0.0.1 • Public • Published

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."
    }
    
    **/
 

Package Sidebar

Install

npm i status-codes

Weekly Downloads

122

Version

0.0.1

License

MIT

Last publish

Collaborators

  • labithiotis