New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

http-statuses

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-statuses

Http error wrapper

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

HTTP statuses for Node

Module to work with http statuses in Node.

Usage

Require this module in your code and get a status object by key. Status objects contain code, message and createError method to create convinient node.js Error instance with all status data included.

Example


var express = require('express');
var Q = require('q');
var HTTP_STATUSES = require('http-statuses');
var app = express();

app.get('/', function (req, res) {
  Q
    .try(function () {
      if (!req.param('ok')) {
        throw HTTP_STATUSES.BAD_REQUEST.createError("Not ok");
      }
      res.send("ok", HTTP_STATUSES.OK.code);
    })
    .catch(function(err) {
      res.send(err.message, err.httpStatus.code);
    });
});

var server = app.listen(3000, function() {
  console.log('Listening on port %d', server.address().port);
});

Keywords

node.js

FAQs

Package last updated on 16 Feb 2017

Did you know?

Socket

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.

Install

Related posts