Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.