Socket
Socket
Sign inDemoInstall

courier-api

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

courier-api

Node.js module that interfaces with Greek courier companies.


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

courier-api

Node.js module that interfaces with Greek courier companies.

Current supported couriers

  • ΕΛΤΑ Courier (website)
  • ACS Courier (website)
  • Γενική Ταχυδρομική (website)
  • Speedex (website)
  • EasyMail (website)
  • DHL (website)
  • SpeedPAK Standard / Economy (website)
  • ..and more to come!

Install

npm i courier-apior yarn add courier-api

Usage example

const DHL = new (require("courier-api").speedex);
// or
const {DHL} = require("courier-api");
// It's the same for the other supported couriers

DHL.get("TRACK_ID").then((response) => {
	/* your code here */
}).catch(console.error);
// or
(async () => {
	const data = await DHL.get("TRACK_ID");
	/* your code here */
})();

// same goes for the other couriers!

Keywords

FAQs

Package last updated on 23 Mar 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc