Socket
Socket
Sign inDemoInstall

paccurate

Package Overview
Dependencies
16
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    paccurate

Reduce fulfillment costs and wasted material by finding the optimal way to pack every shipment, in real time.


Version published
Weekly downloads
161
increased by33.06%
Maintainers
1
Install size
3.00 MB
Created
Weekly downloads
 

Readme

Source

paccurate

NPM

NPM version build codecov

Node.js client library for Paccurate. The types are generated from Paccurate Swagger 1.6.1.

See docs and demo.

Quick Start

import { pack } from 'paccurate'

const data = await pack({
  key: 'YOUR_API_KEY',
  itemSets: [
    {
      refId: 0,
      dimensions: { x: 5.5, y: 6, z: 6 },
      quantity: 3,
      weight: 4.5,
    },
  ],
  boxTypeSets: ['fedex'],
})

console.log(data)

Documentation

Prerequisites

Installation

NPM:

npm install paccurate

Yarn:

yarn add paccurate

Usage

The package needs to be configured with your account's secret key:

const { Paccurate } = require('paccurate')

const paccurate = new Paccurate('YOUR_API_KEY')

paccurate
  .pack({
    // ...
  })
  .then((data) => console.dir(data, { depth: null }))
  .catch((error) => console.error(error.code, error.message))

The same can be done with ES Modules and async-await:

import { Paccurate } from 'paccurate'

const paccurate = new Paccurate('YOUR_API_KEY')

async function main() {
  try {
    const data = await paccurate.pack({
      // ...
    })
    console.dir(data, { depth: null })
  } catch (error) {
    console.error(error.code, error.message)
  }
}

main()

API Endpoint

The request can be sent to two endpoints:

EndpointDescription
https://api.paccurate.io/30-second timeout, best for real-time
https://cloud.api.paccurate.io/1 hour timeout, best for large, parallel batch jobs

The default endpoint is https://api.paccurate.io/. To send to a different endpoint, you can:

  1. Instantiate with endpoint:

    import { Paccurate } from 'paccurate'
    
    const paccurate = new Paccurate('YOUR_API_KEY', 'https://cloud.api.paccurate.io/')
    await paccurate.pack(data)
    
  2. Call method with endpoint:

    import { Paccurate } from 'paccurate'
    
    const paccurate = new Paccurate('YOUR_API_KEY')
    await paccurate.pack(data, 'https://cloud.api.paccurate.io/')
    
  3. Call function with endpoint:

    import { pack } from 'paccurate'
    
    await pack(data, 'https://cloud.api.paccurate.io/')
    

TypeScript

The following types can be imported:

import type { Body, Response } from 'paccurate'

Contributing

Contributions are welcome! See our guide on how to proceed. :wave:

License

MIT

Keywords

FAQs

Last updated on 26 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc