Skip to content

Latest commit

 

History

History
executable file
·
49 lines (41 loc) · 1.97 KB

README.md

File metadata and controls

executable file
·
49 lines (41 loc) · 1.97 KB

generics-shipstation

Gitter NPM version Build Status Test Coverage Dependency Status Follow @FabrixApp on Twitter

Generic Fulfillment Provider for Shipstation.com.

Looking for Spool-Generics?

Install

$ npm install --save @fabrix/generics-shipstation

Configure

// config/generics.ts
export const generics = {
  // make the key shipstation, alternatively make the key payment_processor to be the default payment_processor  
  shipstation: {
    adapter: require('@fabrix/generic-shipstation').ShipstationGeneric,
    config: {
        shipstation_public: '<your public key>',
        shipstation_secret: '<your private key>'
    },
    api: require('@fabrix/generic-shipstation/api'),
    icon: '' // url to an icon you want to use for this generic
  }
}