Async library to enable you to interact with the xbox live api
npm install async-xbox-live-api_Requires a valid microsoft account_
npm install async-xbox-live-apiconst xla = require('async-xbox-live-api');import * as xla from 'async-xbox-live-api';Next you should insert your credentials via the environment variables:
```
XBL_USERNAME=
XBL_PASSWORD=
NOTE:
This library supports .env files, an .env.example file is included
xla.getXuid('Ninja').then(console.log).catch(console.error);
`#### getClipsForGamer
`
xla.getClipsForGamer('Ninja').then(console.log).catch(console.error);
`#### getScreenshotsForGamer
`
xla.getScreenshotsForGamer('Ninja').then(console.log).catch(console.error);
`#### getAchievementsForGamer
`
xla.getAchievementsForGamer('Ninja').then(console.log).catch(console.error);
`#### getActivityForGamer
`
xla.getActivityForGamer('Ninja').then(console.log).catch(console.error);
``