This is a package to connect to the HockeyTech API.
It can be used in Node.js and fronted projects.
HockeyTech is a worldwide leader in providing hockey-related technologies, analytics and information services.
- axios
yarn add hockeytech
Inform the key, the client code, a language code ('en' or 'fr') and optionally a proxy base url when creating a new object. The proxy is necessary in development, as the HockeyTech API doesn't allow localhost access.
import HockeyTech from 'hockeytech';
const ht = new HockeyTech('4767a11864244441', 'ohl');
ht.getSeasonList()
.then(data => console.log(data))
.catch(err => console.log(err));
or
import HockeyTech from 'hockeytech';
const ht = new HockeyTech('4767a11864244441', 'ohl', 'en', 'http://localhost:3001/proxy?url=');
ht.getSeasonList()
.then(data => console.log(data))
.catch(err => console.log(err));
MIT