1.1.0 • Published 3 years ago

@retiolum/football-data v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

Football data

This repository assembles footbal data as JSON files suitable for use within JavaScript projects (though as it is JSON, the data is generally usable with any programming language offering JSON support, e.g. PHP).

The data is grouped into topics and contains the data in different languages (currently only German is available).

Data sets

The following data sets are currently available:

  • List of finals in European cups

Installation

npm install @retiolum/football-data

Usage

Node

const footballData = require('@retiolum/football-data');

console.log(footballData.uefaCup);

Web/ES6

Import everything:

import * as footballData from '@retiolum/football-data';

console.log(footballData.uefaCup);

Or import only the things you need:

import { uefaCup } from '@retiolum/football-data';

console.log(uefaCup);

Raw data

The repository also contains the raw data used to create the JSON data; each raw data set includes a description where the data is from and how the conversion to JSON was done.

1.1.0

3 years ago

1.0.0

3 years ago

0.2.0

4 years ago

0.1.1

5 years ago

0.1.0

5 years ago