Popularity
2.6
Stable
Activity
0.0
Stable
107
25
10
Programming language: CoffeeScript
License: GNU General Public License v3.0 or later
react-google-analytics alternatives and similar libraries
Based on the "Integrations with Third Party Services" category.
Alternatively, view react-google-analytics alternatives based on common mentions on social networks and blogs.
-
react-firebase-hooks
React Hooks for Firebase. -
react-stripe-checkout
Load stripe's checkout.js as a react component. Easiest way to use checkout with React. -
redux-segment
Segment.io analytics integration for redux. -
react-google-autocomplete
React components for google places API. -
react-slack-notification
React Slack Notification is a lightweight package, Send messages to a Slack channel directly from your react app.
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
Do you think we are missing an alternative of react-google-analytics or a related project?
README
react-google-analytics
Adds the Google Analytics script to your page and exposes the ga
tracking
function as a module.
Usage:
var ga = require('react-google-analytics');
var GAInitiailizer = ga.Initializer;
// Use the initializer to add the script to your page somewhere.
var MyComponent = React.createClass({
render: function() {
return (
<div>
// SNIP
<GAInitiailizer />
// SNIP
</div>
);
}
});
Elsewhere, use the ga
function:
var ga = require('react-google-analytics');
ga('create', 'UA-XXXX-Y', 'auto');
ga('send', 'pageview');