#js #gtag

gtag-js

A rustic wrapper around Google's gtag.js framework

1 unstable release

0.2.0 Feb 21, 2020

#1038 in WebAssembly

MIT/Apache

8KB

gtag-js Crates.io

A rustic wrapper around Google's gtag.js javascript framework. See the gtag-js-sys crate for a more low level wrapper.

Example

Ensure the gtag.js snippet has been properly installed before your wasm module runs. Instructions can be found in the gtag.js documentation.

use gtag_js::DataLayer;
use serde_json::json;

fn main() {
    let gtag = DataLayer::new("GA_MEASUREMENT_ID");

    gtag.push("config", json!({
        "page_title": "homepage",
        "page_path": "/home",
    }).unwrap();
}

License

This project is licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.1–2MB
~43K SLoC