# getstatus

> Node application to get HTTP status.

Latest version **0.1.2** (published 2014-07-11) · 0 weekly downloads

## Install

```sh
npm install getstatus
pnpm add getstatus
yarn add getstatus
bun add getstatus
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2014-07-11 |
| First published | 2014-07-11 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | * |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Thibault Montel |
| Maintainers | tmontel |

## Links

- npm: https://www.npmjs.com/package/getstatus
- Repository: https://github.com/iprospect-canada/getstatus
- Issues: https://github.com/iprospect-canada/getstatus/issues
- npm.io page: https://npm.io/package/getstatus

## Recent versions

- 0.1.2 (latest) — 2014-07-11
- 0.1.1 — 2014-07-11
- 0.1.0 — 2014-07-11

## README

Http status getter
==========================
--------------------------

Http status getter is a tool allowing to get Http statuses array for post-processing.

  - Install
  - Use the function
  - Enjoy

This tool is made to improve performances are given by PHP script. NodeJs is naturally faster because its awesome.

Version
----

0.1.2

Installation
--------------

```sh
npm install getstatus
```

Usage example
------

```sh
var lib = require('getstatus');
var EventEmitter = require('events').EventEmitter;

var app = new EventEmitter();

var items = [ 'http://www.google.fr', 'http://iprospect.com', 'http://www.yahoo.ca'];

console.log('--------------------');
lib.getStatus(items.shift(), items, app);
app.on('complete', function(results){
  console.log('--------------------');
  console.log(results);
  console.log('--------------------');
});

```

Result array
------

```sh
[ { url: 'http://www.google.fr', status: 200 },
  { url: 'http://iprospect.com', status: 200 },
  { url: 'http://www.yahoo.ca', status: 301 } ]
```

License
----

iProspect All Rights Reserved © 2014

Author
----
[Thibault Montel]


[Thibault Montel]:thibault.montel@iprospect.com

---
_Source: https://npm.io/package/getstatus · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
