1.0.2 • Published 1 year ago

simple-cargo-tracker v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Simple Cargo Tracking from DHL and Fedex

npm: https://www.npmjs.com/package/simple-cargo-tracker Example:

import tracking from "simple-cargo-tracker";

// Shipment Unified Cargo
tracking
  .dhl({ dhl_api_key: "12313121231", trackingNumberArray: ["123123123123"] })
  .then((res) => console.log(res));

// Tracking personal cargo packages
tracking.fedex.customerTracking({
  clientID: "123123123123",
  secretID: "123123123123",
  trackingNumberArray: ["123123123123"],
});