@mlx/ga
v0.0.20
Published
Fetch structured data from Google Analytics
Downloads
28
Maintainers
Readme
GA
Allows you to fetch data from Google analytics. Combined with @mlx/parser
you can aggregate the route information and map it to your application's parametrized routes:
const { fetch } = require('@mlx/ga');
const { parseRoutes, ProjectType } = require('@mlx/parser');
const { writeFileSync } = require('fs');
const key = require('./credentials.json');
const viewId = '000000000';
const applicationRoutes = parseRoutes('tsconfig.app.json', ProjectType.Angular);
fetch({
key,
viewId,
period: {
startDate: new Date('2016-1-1'),
endDate: new Date('2018-2-24')
},
formatter: r => r.replace('/app', ''),
routes: applicationRoutes.map(f => f.path)
}).then(g => {
writeFileSync('data.json', JSON.stringify(g, null, 2));
});
For more details visit https://github.com/mgechev/mlx.
License
MIT