
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
parcel-tracker-api
Advanced tools
Parcel tracker for Node.js
Using npm:
npm install parcel-tracker-api
const Tracker = require('parcel-tracker-api');
import {Tracker} from "parcel-tracker-api";
You can configure the tracker by using a TrackerConfig object.
Many carriers needs a api key to use their API's. You need to put them in the config object !.
Example:
const config = {
apiKeys: {
laPoste: 'API_KEY', // For Colissimo and Chronopost API
DHL: 'API_KEY',
royalMail: 'CLIENT_ID;CLIENT_SECRET',
}
};
const tracker = new Tracker(config);
Many carrier api's do not support CORS, which can be a problem if we want to use the API on front-end applications.
To bypass this problem you can use the enableCrossOrigin
. With this option requests may be longer than expected, it's because a proxy to put CORS headers is used.
Example:
const config = {
enableCrossOrigin: true,
};
const tracker = new Tracker(config);
const config = {
apiKeys: {
DHL: 'API_KEY'
}
};
const tracker = new Tracker(config);
tracker.getTrackingInformations('TRACKING_NUMBER', 'DHL').then((response) => {
// DO WORK
})
You can use a specific tracker configuration for a unique request, it will override the default one
const defaultConfig = {
apiKeys: {
DHL: 'API_KEY'
}
};
const specificOne = {
enableCrossOrigin: true
};
const tracker = new Tracker(config);
tracker.getTrackingInformations('TRACKING_NUMBER', 'DHL', specificOne).then((response) => {
// DO WORK
})
{
// Carrier used to get data
carrier: string;
// True if the parcel is delivered
isDelivered: boolean;
// Tracking events
events: ParcelEvent[];
// Tracker number
trackingNumber: string;
// The last status provided by the carrier
status?: string;
// Date of the last event
lastUpdate?: Date;
// Date of the first event
entryDate?: Date;
// Raw response from the api
raw: any;
}
{
// Label of the event
label: string;
// Event's date
date: Date;
// Event's location if it provided by the carrier
location?: string;
}
const tracker = new Tracker();
tracker.getCarrier('1Z9999999999999999') // => ['UPS']
const tracker = new Tracker();
tracker.getCarriersList() // => ['UPS', 'DHL', 'Colissimo', ...]
FAQs
Parcel tracker for Node.js
The npm package parcel-tracker-api receives a total of 13 weekly downloads. As such, parcel-tracker-api popularity was classified as not popular.
We found that parcel-tracker-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.