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

http-status-cli

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-status-cli - npm Package Compare versions

Comparing version
1.1.3
to
1.1.4
+1
-1
package.json
{
"name": "http-status-cli",
"version": "1.1.3",
"version": "1.1.4",
"description": "HTTP Status code message CLI lookup",

@@ -5,0 +5,0 @@ "main": "src/index.js",

http-status-cli
======
Why
------
I always forget what some status codes is and what they do. Therefore I find this tool handy to do a quick lookup.
Installation

@@ -49,6 +53,6 @@ ------

Lint
Tests
------
```
npm run lint
npm test
```

@@ -55,0 +59,0 @@

@@ -15,5 +15,5 @@ 'use strict';

it('should return an exception if the code is invalid', function() {
it('should throw an exception if the code is invalid', function() {
assert.throws(function() { httpStatus(1337) }, Error, 'HTTP status code not found');
});
});