This commit is contained in:
Ilya Kantor 2019-07-08 19:13:11 +03:00
parent b56b6cc2a4
commit 2d77cc2d7c

View file

@ -1,12 +1,12 @@
# Fetch users from GitHub
Create an async function `getUsers(names)`, that gets an array of GitHub user names, fetches them from GitHub and returns an array of GitHub users instead.
Create an async function `getUsers(names)`, that gets an array of GitHub logins, fetche the users from GitHub and returns an array of GitHub users.
The GitHub url with user informaiton is: `https://api.github.com/users/USERNAME`.
The GitHub url with user informaiton for the given `USERNAME` is: `https://api.github.com/users/USERNAME`.
There's a test example in the sandbox.
Important details:
1. There should be one `fetch` request per user. And requests shouldn't wait for each other. So that the data arrives as soon as possible.
2. If a request fails, or if there's no such user, the function should return `null` in the resulting array.
2. If any request fails, or if there's no such user, the function should return `null` in the resulting array.