@mlx/ga
TypeScript icon, indicating that this package has built-in type declarations

0.0.20 • Public • Published

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

Package Sidebar

Install

npm i @mlx/ga

Weekly Downloads

0

Version

0.0.20

License

MIT

Unpacked Size

20.8 kB

Total Files

8

Last publish

Collaborators

  • mgechev