Obtenha reação de solicitação
// Simple GET request using fetch
fetch('https://api.npms.io/v2/search?q=react')
.then(response => response.json())
.then(data => this.setState({ data: data.feed }));
Sticky Pingu