soccer-scrapper

fetches real time data from top 5 european football leagues

Usage no npm install needed!

<script type="module">
  import soccerScrapper from 'https://cdn.skypack.dev/soccer-scrapper';
</script>

README

soccer-scrapper

use soccer-scrapper to fetch real time JSON data of top 5 european leagues

install

npm install soccer-scrapper

usage

var soccerScrapper = require('soccer-scrapper');

async function extract(league){
let resp = await soccerScrapper.standings(league);
console.log(resp);
return resp;
}

extract('ligue-1');
extract('premier-league');
extract('serie-a');
extract('bundesliga');
extract('la-liga');