npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@move-lab/shippify-node

v0.0.11

Published

This library allows you to quickly use Shippify API with NodeJS

Readme

Shippify for Node.JS

This library allows you to quickly use Shippify API with NodeJS


Usage

Installing

npm install @move-lab/shippify-node -S

Initialize

Initialize the library:

import shippify from '@move-lab/shippify-node'

shippify.initialize('api_key', 'api_secret')

Getting a quote from Shippify

// Create a delivery to request a quote
const delivery = new shippify.Delivery()
delivery.addPickup({
  "contact": {
      "name": "John Doe",
      "email": "[email protected]",
      "phonenumber": "+19209489292"
  },
  "location": {
      "address": "Central Park, New York, NY, United States",
      "instructions": "Central Park West, APT 10920"
  }
})
delivery.addDropoff({
  "contact": {
    "name": "Jane Doe",
    "email": "[email protected]",
    "phonenumber": "+1 234567890"
  },
  "location": {
      "address": "200 Eastern Pkwy, Brooklyn, NY 11238, USA",
      "instructions": "APT 2094",
      "lat": 40.6720036,
      "lng": -73.9593279
  }
})

delivery.addPackages({
  "name": "roses",
  "size": "xs",
  "qty": 1
})

// Getting the quotes
const quotes = await shippify.quotes([delivery], new Date('2019-07-31 09:00:00'))

// You can access to closest quote by closest
console.log(quotes.closest)
// You can access to all quotes
console.log(quotes.all)

Creating a delivery on Shippify

With quotes we can create a delivery

const delivery = new shippify.Delivery() // Delivery created for get quotes
const quote = quotes.closest
const deliveries = await shippify.delivery([delivery], quote.id)
// That's all

Canceling a delivery

// Simplily with the id
await shippify.delivery.cancel(id)

API


TODO

  • Add Webhook support
  • Add Draft support
  • Testing