
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
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 9 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.