Wangkanai.Universal 0.2.400

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Wangkanai.Universal --version 0.2.400
NuGet\Install-Package Wangkanai.Universal -Version 0.2.400
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Wangkanai.Universal" Version="0.2.400" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Wangkanai.Universal --version 0.2.400
#r "nuget: Wangkanai.Universal, 0.2.400"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Wangkanai.Universal as a Cake Addin
#addin nuget:?package=Wangkanai.Universal&version=0.2.400

// Install Wangkanai.Universal as a Cake Tool
#tool nuget:?package=Wangkanai.Universal&version=0.2.400

Wangkanai Google Universal Analytics

ASP.NET Core Google Analytics service is lightweight server-side code that generator library that JavaScript client-side on the fly for Google Analytics analytics.js. The goal of the framework is to stay out of the way as much as possible and provide a super interaction with Google all from C#.

This old project my was developed back long time ago in the days of ASP.NET Full Framework around 2013. If you like me to upgrade this project using the design pattern my Detection library.

Please give me appreciation and click stars ⭐:star::star:, when this project reach 100 stars. I will rebuild project for ASP.NET Core 6.0. But you wanna contract me to get start development of the a migration to ASP.NET Core for your production requirement and long term support. Please contact me personally and we can discuss the details.

NuGet Badge NuGet Badge

Build Status Open Collective Patreon GitHub

Installation

Installation of google universal analytics library is now done with a single package reference point.

PM> install-package Wangkanai.Universal

Configuration

public void ConfigureServices(IServiceCollection services)
{
    // Add detection services container and device resolver service.
    services.AddGoogleAnalytics();

    // Add framework services.
    services.AddControllersWithViews();
}
  • AddGoogleAnalytics() Adds the google universal services to the services container.

The current device on a request is set in the Responsive middleware. The Universal middleware is enabled in the Configure method of Startup.cs file.

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    app.UseGoogleAnalytics();
    
    app.UseRouting();  

    app.UseEndpoints(endpoints => endpoints.MapDefaultControllerRoute());
}

This project provide the full source code and complied dll library for you to add reference into your visual studio projects. The library include Intellisense to help guide you write server-side code in an effective manner.

public ActionResult Ecommerce()
{
    var session = new Wangkanai.Universal.Session();
    session.Transaction = new Transaction("1234", "store", 1.0, 1.0);
    session.Transaction.Items.Add(new Item("product a", "a001", "xxx", 2.0, 1));
    session.Transaction.Items.Add(new Item("product b", "b001", "yyy", 3.0, 2));
    ViewBag.AnalyticsSession = session;
    return View();
}

Features

IntelliSense

Demo

Mvc Demo Web App

Where it originated from?

This original library that was introduced in CodePlex. The library was for .NET Framework web application to render analytics.js javascript client-side to interact with Google API from .NET language web application within the server-side code environment. Both ASP.NET WebForm and ASP.NET MVC. Its was good, but we would like to see a much more extensible and ambust platform, so we are rewriting the entire framework.

How do i contribute?

Universal Analytics is a powerful and continuous improving platform. We would like to invite developers to help maintain and add features so that this library is keep aligned with most of the popular web analytics out there.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.21.0 181 6/16/2023
0.20.1 142 6/7/2023
0.20.0 145 5/15/2023
0.19.0 147 5/11/2023
0.18.0 200 4/3/2023
0.17.3 294 1/10/2023
0.17.2 291 1/3/2023
0.17.1 276 12/31/2022
0.17.0 293 12/27/2022
0.16.0 292 12/23/2022
0.15.0 317 11/30/2022
0.14.0 316 11/28/2022
0.13.0 322 11/27/2022
0.12.0 309 11/26/2022
0.11.0 311 11/24/2022
0.10.0 328 11/18/2022
0.9.0 320 11/15/2022
0.8.0 333 11/9/2022
0.7.0 344 11/9/2022
0.5.2 416 9/27/2022
0.5.1 421 9/23/2022
0.5.0 465 9/13/2022
0.4.0 412 9/13/2022
0.3.300 405 9/9/2022
0.3.200 405 8/23/2022
0.3.100 406 8/21/2022
0.2.500 414 6/23/2022
0.2.400 438 3/9/2022
0.2.300 450 2/22/2022
0.2.201 449 2/19/2022
0.2.200 445 2/18/2022
0.2.100 428 2/18/2022
0.0.100 461 2/12/2020
0.0.100-alpha 340 2/10/2020