@this-is-not-a-drill/vanillajs-sdk
v1.0.29
Published
Core vanilla js SDK for deploying the This is Not A Drill! service in client apps.
Downloads
44
Readme
This is Not A Drill! Client SDKs -- Plain JS
Purpose
This SDK allows clients to install This Is Not A Drill! (TINAD) User Alerting and Notification Service, on any website. You can simply add a script tag on any or all pages with your public API code. An example script tag to display messages as toasts might be:
<script
id="tinad-sdk"
src="https://cdn.jsdelivr.net/npm/@this-is-not-a-drill/vanillajs-sdk@latest/dist/bundle.js"
tinad-configuration=
'{
"api": {
"displayMode": "toast",
"endpoint": "https://api.this-is-not-a-drill.com",
"key": "`your_public_api_key`",
"environments": [
"Development"
],
"domains": ["your-domain.com"]
},
"toast": {
"position": "top-end",
"duration": 5000
},
}'
>
Learn about TINAD at this-is-not-a-drill.com
Learn how to install the service by visiting the documentation at docs.this-is-not-a-drill.com
If you're looking for a React SDK, you can find that here: