An open API service indexing awesome lists of open source software.

https://github.com/blue-cardinal/ngx-google-analytics

Google Analytics library for Angular projects.
https://github.com/blue-cardinal/ngx-google-analytics

Last synced: 3 months ago
JSON representation

Google Analytics library for Angular projects.

Awesome Lists containing this project

README

        

# NgxGoogleAnalytics

This package provides a module that injects the Google Analytics tag manager script into your Angular project.

It provides some guard rails against including the tag manager script in a dev environment.

## How to use
Include the ngx-google-analytics module in your AppModule:

```ts

@NgModule({
imports: [
NgxGoogleAnalyticsModule.forRoot({
trackingCode: 'YOUR_TRACKING_CODE',
}),
]
})
export class AppModule { }
```