Segment.io integration for React.js
// with npm
$ npm install react-segment --save
// with yarn
$ yarn add react-segment
If you're developing using npm and CommonJS modules:
let analytics = require('react-segment');
if(process.env.NODE_ENV == 'development'){
analytics.default.load("DEVELOPMENT KEY");
}else if(process.env.NODE_ENV == 'staging' ){
analytics.default.load("STAGING KEY");
}else if(process.env.NODE_ENV == 'pre-production'){
analytics.default.load("PRE-PRODUCTION KEY");
}else if(process.env.NODE_ENV == 'production'){
analytics.default.load("PRODUCTION KEY");
}
Don't see your prop? explaining your use case, and I will add it.
Please file an issue if you find a bug, or need help.
The MIT License (MIT)
Copyright (c) 2022 Anish M Prasad