@shop25/tracking-widget
v1.0.0
Published
```js
Downloads
2
Readme
Install
npm i @shop25/tracking-widget
// version less than 1.0.0 is depreceted
Usage
import { TrackingClient } from "@shop25/tracking-widget";
const client = new TrackingClient({ host: "https://yourhost.com" });
const widget = client.createWidget();
widget
.remote()
?.emit("tracking/toTrack", { carrier: "1", number: "", service: "" });
widget.remote()?.on("tracking/mounted", () => {
console.log("mounted");
});