![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@letscooee/web-sdk
Advanced tools
AI driven Personalized Notifications for Better Customer Engagement
Cooee powers hyper-personalised and real time engagements for mobile & web apps based on machine learning. The SaaS platform, hosted on cloud infrastructure processes millions of user transactions and data attributes to create unique and contextual user engagement triggers for end users with simple SDK integration that requires no coding at mobile app level.
We at Cooee believe in the developer productivity and that's how our SDKs are written. The installation should take you no more than two hours. Period!
Following are the guidelines for installing Cooee SDK on to your Android mobile app.
We recommend loading the SDK with the async
flag so your page load time don't increase. To use it, place the following
code before calling any other CooeeSDK functions.
<script src="https://cdn.jsdelivr.net/npm/@letscooee/web-sdk@latest/dist/sdk.min.js" async></script>
<script>
window.CooeeSDK = window.CooeeSDK || {events: [], profile: [], account: []};
CooeeSDK.account.push({"appID": "MY_COOEE_APP_ID"});
</script>
Replace MY_COOEE_APP_ID
with the app id as seen in your Cooee dashboard.
Once you add the above snippet, the SDK will automatically start tracking some default event. Apart from these, you must track the given recommended events based on your industry.
CooeeSDK.events.push(["Add To Cart", {
item: {
id: "15234",
name: "Shoes"
}
}]);
Additional custom attributes/properties can also be shared. We encourage apps to share all properties for better machine learning modelling.
CooeeSDK.profile.push({
name: "John Doe",
email: "john@example.com",
mobile: "9876543210",
loggedIn: true,
foo: "bar",
subscriptions: {
valid: true,
pack: 1234
}
});
Cooee SDK supports callback on the click of in-app notifications actions by returning a map of key-value pairs i.e. objects in JavaScript.
document.addEventListener('onCooeeCTA', function (event) {
const payload = event.detail;
if (!payload) return;
if (payload.actionType === "VIEW_ITEM") {
// Take the user to the given item's page. Item id will be in "payload.id"
} else if (payload.actionType == "GO_TO_SCREEN") {
// Take user to the given screen name
}
}, false);
FAQs
Engage uniquely and boost conversions with AI-powered customer journeys driven by real-time intent
We found that @letscooee/web-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.