integraflow-js
v0.0.8
Published
Integraflow provides tools to redefine customer experience with organic feedback and behavioural data in real-time.
Downloads
2
Maintainers
Readme
Integraflow Web SDK
Integraflow provides tools to redefine customer experience with organic feedback and behavioural data in real-time. Enjoy intuitive designs, open source surveys, advanced analytics, seamless collaboration on the go.
Get Started with CDN
Start by adding the following snippet to your website:
<script>
(function(w, p) {
w[p] =
w[p] ||
function() {
w[p].q = w[p].q || [];
w[p].q.push(arguments);
};
})(window, "Integraflow");
Integraflow("init", {
surveys: [],
debug: true,
onAudienceChanged(audience) {
// ...
},
onEventTracked(payload) {
// ...
},
onSurveyDisplayed(surveyId) {
// ...
},
onQuestionAnswered(surveyId, questionId, answers) {
// ...
},
onSurveyCompleted(surveyId) {
// ...
},
onSurveyClosed(surveyId) {
// ...
}
});
</script>
<script src="https://unpkg.com/integraflow-js/dist/web-bundle.js" async></script>
For more information on integrating the Web SDK with your project, please see the Integraflow developer guide.
Get Started with NPM
Start by adding the package dependency to your project:
npm install --save integraflow-js
After installation, import and initialize the SDK in your application code:
import Integraflow from "integraflow-js";
const integraflowClient = Integraflow.init({
surveys: [],
debug: true,
onAudienceChanged(audience) {
// ...
},
onEventTracked(payload) {
// ...
},
onSurveyDisplayed(surveyId) {
// ...
},
onQuestionAnswered(surveyId, questionId, answers) {
// ...
},
onSurveyCompleted(surveyId) {
// ...
},
onSurveyClosed(surveyId) {
// ...
}
});
For more information on integrating the Web SDK with your project, please see the Integraflow developer guide.
Contributing
Pull requests are welcome for any improvements you might wish to make. If it's something big and you're not sure about it yet, we'd be happy to discuss it first. You can either file an issue or drop us a line to [email protected].
To get started with development, simply clone this repo and open the project to kick things off.
License
This project is licensed under the MIT license. See our LICENSE file and individual source files for more information.