2023.1.0 • Published 1 year ago

karrio v2023.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Karrio Node/JS/TS Library

Karrio is a universal Shipping API that simplifies the integration of logistic carrier services.

Visit karrio.io to deploy your private cloud multi-carrier shipping API.

Documentation

See the full Node API docs.

Installation

Install using npm or yarn

npm i karrio
# or 
yarn add karrio

Usage

The package needs to be configured with your account's API key, which is available in the Karrio Dashboard.

const karrio = require('karrio')('key_...', 'https://api.karrio.io');

karrio.carriers.list()
    .then(carriers => console.log(carriers))
    .catch(error => console.error(error));

Or using ES modules and async/await:

import Karrio from 'karrio';
const karrio = Karrio('key_...', 'https://api.karrio.io');

(async () => {
  const carriers = await karrio.carriers.list();

  console.log(carriers);
})();

Author

Team Karrio | hello@karrio.io | karrio.io