1.0.3 • Published 2 years ago

ft-fetch-multiple-urls v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Fetch multiple URLS

This package contains a function that fetches array of urls and returns their contents in a Promise.

Installation

Run the following command in the terminal

npm install ft-fetch-multiple-urls

Set the type to module in the package.json file.

{
    "type": "module"
}

Documentation

The function accepts a single argument of type array with strings. Each string must be a valid URL. It returns a Promise with the results.

Usage

import requestMultipleUrls from "ft-fetch-multiple-urls";

const urls = [
    'https://ft-tech-test-example.s3-eu-west-1.amazonaws.com/ftse-fsi.json',
    'https://ft-tech-test-example.s3-eu-west-1.amazonaws.com/gbp-hkd.json',
    'https://ft-tech-test-example.s3-eu-west-1.amazonaws.com/gbp-usd.json',
    // 'https://ft-tech-test-example.s3-eu-west-1.amazonaws.com/gbp-usd5g.json',
    // 'https://httpbin.org/status/400',
    // 'https://www.abv.bg/'
];
requestMultipleUrls(urls).then(urlContent => {
    console.log(urlContent)
});

Dependencies

node-fetch

node-fetch is a light-weight module that brings Fetch API to Node.js.

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago