# jy-ft-request-multiple-urls

> A simple NPM module that given an array of URLs will return their content via a Promise.

Latest version **1.0.1** (published 2020-12-12) · ISC license · 0 weekly downloads

## Install

```sh
npm install jy-ft-request-multiple-urls
pnpm add jy-ft-request-multiple-urls
yarn add jy-ft-request-multiple-urls
bun add jy-ft-request-multiple-urls
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2020-12-12 |
| First published | 2020-12-11 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 2.7 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| Maintainers | jamesskyoung |

## Links

- npm: https://www.npmjs.com/package/jy-ft-request-multiple-urls
- npm.io page: https://npm.io/package/jy-ft-request-multiple-urls

## Dependencies (2)

- [jest](https://npm.io/package/jest.md) ^26.6.3
- [axios](https://npm.io/package/axios.md) ^0.21.0

## Recent versions

- 1.0.1 (latest) — 2020-12-12
- 1.0.0 — 2020-12-11

## README

# Overview

A simple NPM module that given an array of URLs will return their content via a Promise.

##Usage

```javascript
const requestMultipleUrls = require('jy-ft-request-multiple-urls') ();

. . . .

const responses = await requestMultipleUrls.get( urls );
```

# Installation

```bash
npm install jy-ft-request-multiple-urls --save
```

# Example

```javascript
const urls = [
    'https://url1.com',
    'https://url2.com',
    'https://url3.com',
    'https://url4.com'
];

const responses = await app.get( urls );

```
```responses``` will contain the result from each URL in the order of the array position.

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