Ejemplo: el nodo js duerme entre axios
const bluebird = require('bluebird')
async function makeRequests (lines) {
await bluebird.map(
lines,
async (line) => {
const encodedLink = encodeURI(line.link)
const response = await axios.get(encodedLink)
// ...your response handling code here...
},
{ concurrency: 3 }
)
}
makeRequests(jsonParsed)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)